Add vim-unimpaired

This commit is contained in:
Jordan Holt 2021-01-12 23:11:01 +00:00
parent 9016e6e34c
commit a7e06584ab

View File

@ -50,6 +50,16 @@ if empty(glob($XDG_CONFIG_HOME . '/nvim/autoload/plug.vim'))
augroup Plug
au!
autocmd VimEnter * PlugInstall
" Bubble single lines
nmap <C-Up> [e
nmap <C-Down> ]e
" Bubble multiple lines
vmap <C-Up> [egv
vmap <C-Down> ]egv
autocmd BufReadPost fugitive://* set bufhidden=delete
augroup END
endif
@ -63,5 +73,6 @@ Plug 'sheerun/vim-polyglot'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
call plug#end()