1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45:10 +01:00

Undo tree plugin

This commit is contained in:
Michiel Scholten
2014-08-01 15:29:59 +02:00
parent 305cf12747
commit 202d05afd5

5
.vimrc
View File

@@ -33,6 +33,11 @@ if v:version >= 704
endif
" Distraction-free writing, start with <Leader>V (\V)
Plugin 'mikewest/vimroom'
" undotree.vim : Display your undo history in a graph.
Plugin 'mbbill/undotree'
nnoremap <Leader>u :UndotreeToggle<CR>
let g:undotree_SetFocusWhenToggle=1 " if undotree is opened, it is likely one
" wants to interact with it.
" All of your Plugins must be added before the following line
call vundle#end() " required