diff options
| author | Anton Bobov <anton@bobov.name> | 2024-08-16 22:43:03 +0500 |
|---|---|---|
| committer | Anton Bobov <anton@bobov.name> | 2024-08-16 22:43:03 +0500 |
| commit | 509267ccc4b095f6fd2a5b1d781b1405e35eebc5 (patch) | |
| tree | 941ccbf1fd29e2562636fce2560261c0b3b7ccb7 /files/.vimrc | |
| parent | a554d45fccadfa7f900b1272beeb93b838c6148b (diff) | |
vim: Add plugins
Diffstat (limited to 'files/.vimrc')
| -rw-r--r-- | files/.vimrc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/files/.vimrc b/files/.vimrc index 0f2463f..e05baeb 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -93,10 +93,14 @@ Plug 'editorconfig/editorconfig-vim' Plug 'triglav/vim-visual-increment' " A Vim plugin that manages your tag files Plug 'ludovicchabant/vim-gutentags' +" Asynchronous build and test dispatcher +Plug 'tpope/vim-dispatch' +" Run your tests at the speed of thought +Plug 'vim-test/vim-test' +" A Narrow Region Plugin for vim (like Emacs Narrow Region) +Plug 'chrisbra/NrrwRgn' -"Plug 'https://github.com/othree/xml.vim' "Plug 'https://github.com/terryma/vim-multiple-cursors' -"Plug 'https://github.com/motemen/git-vim' " }}} call plug#end() @@ -245,7 +249,6 @@ if has('termguicolors') let g:solarized_termtrans=1 set termguicolors endif -set background=light silent! colorscheme solarized8 " }}} @@ -442,7 +445,8 @@ endif " Quick editing {{{ -nnoremap <Leader>ev :vsplit $MYVIMRC<CR> +nnoremap <Leader>ev :edit $MYVIMRC<CR> +nnoremap <Leader>sv :source $MYVIMRC<CR> " }}} |
