nvim: Added UndoTree

This commit is contained in:
Felipe M 2020-12-28 22:41:13 +01:00
parent a2fb76a351
commit 10bf619127

View file

@ -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>