this repo has no description
1
fork

Configure Feed

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

Use easy-align instead of Tabularize

+9 -12
+1 -1
Makefile
··· 9 9 10 10 neovim: 11 11 $(LN) nvim $(XDG_CONFIG_HOME)/nvim 12 - nvim +PlugUpgrade +PlugInstall +qall 12 + nvim +PlugUpdate +qall 13 13 14 14 lein: 15 15 $(WGET) -Obin/lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
+2
nvim/ftplugin/rust.vim
··· 4 4 5 5 noremap <leader>rb :call VimuxRunCommand("clear; cargo build")<CR> 6 6 noremap <leader>rt :call VimuxRunCommand("clear; cargo test")<CR> 7 + 8 + au BufWrite rust :Autoformat
+3 -2
nvim/init.vim
··· 42 42 Plug 'tpope/vim-commentary' 43 43 Plug 'Raimondi/delimitMate' 44 44 Plug 'tpope/vim-surround' 45 + Plug 'Chiel92/vim-autoformat' 45 46 46 47 " Utils 47 - Plug 'godlygeek/tabular', { 'on': 'Tabularize' } 48 + Plug 'junegunn/vim-easy-align' 48 49 Plug 'mbbill/undotree', { 'on': 'UndotreeToggle' } 49 50 Plug 'mjbrownie/swapit' 50 51 Plug 'scrooloose/syntastic' ··· 189 190 set formatoptions+=t 190 191 191 192 " Formatting and cleaning 192 - noremap <leader>ff mzgg=G`z<CR> 193 + noremap <leader>ff :Autoformat<CR> 193 194 noremap <leader>fc :Clean<CR> 194 195 195 196 " Set fold method
+3
nvim/plugin/align.vim
··· 1 + vmap <enter> <Plug>(EasyAlign) 2 + vmap <leader>a <Plug>(EasyAlign) 3 + nmap <leader>a <Plug>(EasyAlign)
-9
nvim/plugin/tabularize.vim
··· 1 - " Align by given separator (available '=',':' and ',') 2 - nnoremap <Leader>a= :Tabularize /=<CR> 3 - vnoremap <Leader>a= :Tabularize /=<CR> 4 - nnoremap <Leader>a: :Tabularize /:\zs<CR> 5 - vnoremap <Leader>a: :Tabularize /:\zs<CR> 6 - nnoremap <Leader>a, :Tabularize /,\zs<CR> 7 - vnoremap <Leader>a, :Tabularize /,\zs<CR> 8 - 9 - abbr Tabularize Tab