Add vim-unimpaired
This commit is contained in:
parent
9016e6e34c
commit
a7e06584ab
@ -50,6 +50,16 @@ if empty(glob($XDG_CONFIG_HOME . '/nvim/autoload/plug.vim'))
|
|||||||
augroup Plug
|
augroup Plug
|
||||||
au!
|
au!
|
||||||
autocmd VimEnter * PlugInstall
|
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
|
augroup END
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -63,5 +73,6 @@ Plug 'sheerun/vim-polyglot'
|
|||||||
Plug 'tpope/vim-commentary'
|
Plug 'tpope/vim-commentary'
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
|
Plug 'tpope/vim-unimpaired'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
Reference in New Issue
Block a user