this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Move ftplugin to after/ftplugin

+25 -10
+9
nvim/after/ftplugin/ruby.vim
··· 1 + noremap <F12> :!ripper-tags -f .tags -R . --exclude vendor<CR> 2 + 3 + imap ,, => 4 + " noremap <buffer> g= :RubocopFmt<CR> 5 + 6 + command! RubocopFmt update | NeomakeSh rubocop -a % 7 + 8 + noremap <leader>rb :up<bar>call VimuxRunCommand("clear; cargo bench")<CR> 9 + noremap <leader>rr :up<bar>call VimuxRunCommand("clear; cargo test")<CR>
nvim/ftplugin/cpp.vim nvim/after/ftplugin/cpp.vim
nvim/ftplugin/css.vim nvim/after/ftplugin/css.vim
nvim/ftplugin/gitcommit.vim nvim/after/ftplugin/gitcommit.vim
+1
nvim/ftplugin/gitrebase.vim nvim/after/ftplugin/gitrebase.vim
··· 3 3 nmap cp ^ciwp<ESC> 4 4 nmap cr ^ciwr<ESC> 5 5 nmap cs ^ciws<ESC> 6 + nmap cd ^ciwd<ESC>
nvim/ftplugin/go.vim nvim/after/ftplugin/go.vim
nvim/ftplugin/haskell.vim nvim/after/ftplugin/haskell.vim
nvim/ftplugin/help.vim nvim/after/ftplugin/help.vim
nvim/ftplugin/html.vim nvim/after/ftplugin/html.vim
nvim/ftplugin/javascript.vim nvim/after/ftplugin/javascript.vim
nvim/ftplugin/makefile.vim nvim/after/ftplugin/makefile.vim
nvim/ftplugin/markdown.vim nvim/after/ftplugin/markdown.vim
nvim/ftplugin/python.vim nvim/after/ftplugin/python.vim
nvim/ftplugin/robots.vim nvim/after/ftplugin/robots.vim
-6
nvim/ftplugin/ruby.vim
··· 1 - noremap <F12> :!ripper-tags -f .tags -R . --exclude vendor<CR> 2 - 3 - imap ,, => 4 - " noremap <buffer> g= :RubocopFmt<CR> 5 - 6 - command! RubocopFmt NeomakeSh rubocop -a %
+11 -3
nvim/ftplugin/rust.vim nvim/after/ftplugin/rust.vim
··· 1 - compiler cargo 1 + ClearSwapList 2 2 3 + SwapList float f32 f64 4 + SwapList integers i8 u8 i16 u16 i32 u32 i64 u64 5 + SwapList mut & &mut 6 + SwapList string str String 7 + SwapList result Ok Err 8 + SwapList option Some None 9 + 10 + compiler cargo 3 11 nnoremap <buffer> g= :RustFmt<CR> 4 12 5 13 let g:rustfmt_autosave = 1 ··· 30 38 \ '%f:%l: %m', 31 39 \ } 32 40 33 - noremap <leader>rb :up \| call VimuxRunCommand("clear; cargo bench")<CR> 34 - noremap <leader>rr :up \| call VimuxRunCommand("clear; cargo test")<CR> 41 + noremap <leader>rb :up<bar>call VimuxRunCommand("clear; cargo bench")<CR> 42 + noremap <leader>rr :up<bar>call VimuxRunCommand("clear; cargo test")<CR>
nvim/ftplugin/scheme.vim nvim/after/ftplugin/scheme.vim
nvim/ftplugin/tex.vim nvim/after/ftplugin/tex.vim
nvim/ftplugin/toml.vim nvim/after/ftplugin/toml.vim
nvim/ftplugin/vim.vim nvim/after/ftplugin/vim.vim
+3
nvim/init.vim
··· 126 126 127 127 " Show me more! 128 128 set scrolloff=10 129 + 130 + " Do not preview 131 + set completeopt-=preview 129 132 " }}} 130 133 " Autoupdate {{{ 131 134 " Automatically reload changed files
+1 -1
nvim/plugin/undo.vim
··· 1 1 " Turn backup off, since most stuff is in SVN, git etc. anyway... 2 2 set nobackup 3 - set noswapfile 3 + set updatecount=10 4 4 5 5 " Keep undo history across sessions, by storing in file. 6 6 " Only works all the time.