nvim: Added UndoTree
This commit is contained in:
parent
a2fb76a351
commit
10bf619127
1 changed files with 13 additions and 0 deletions
|
@ -12,6 +12,9 @@ Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
" Git
|
" Git
|
||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
|
" Undo tree
|
||||||
|
Plug 'mbbill/undotree'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
"
|
"
|
||||||
|
@ -32,6 +35,11 @@ set spelllang=en " Check language spelling in english
|
||||||
"
|
"
|
||||||
colorscheme zellner
|
colorscheme zellner
|
||||||
|
|
||||||
|
"
|
||||||
|
" CtrlP
|
||||||
|
"
|
||||||
|
map <C-S-P> <Esc>:CtrlPBuffer<CR>
|
||||||
|
|
||||||
"
|
"
|
||||||
" Deoplete
|
" Deoplete
|
||||||
"
|
"
|
||||||
|
@ -39,3 +47,8 @@ let g:deoplete#enable_at_startup = 1
|
||||||
|
|
||||||
" - Autocomplete with <Tab>
|
" - Autocomplete with <Tab>
|
||||||
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
|
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
|
||||||
|
|
||||||
|
"
|
||||||
|
" UndoTree
|
||||||
|
"
|
||||||
|
map <C-S-u> <Esc>:UndotreeToggle<CR>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue