diff --git a/plugins.vim b/plugins.vim index 0510027..dd423c3 100644 --- a/plugins.vim +++ b/plugins.vim @@ -158,11 +158,8 @@ Plug 'christoomey/vim-titlecase' " Autosave files on certain events Plug '907th/vim-auto-save' -" graphcial undo history, see https://github.com/mbbill/undotree -Plug 'mbbill/undotree' - -" another plugin to show undo history -" Plug 'simnalamburt/vim-mundo' +" Show undo history visually +Plug 'simnalamburt/vim-mundo' " Manage your yank history if g:is_win || g:is_mac @@ -538,6 +535,12 @@ let g:auto_save_events = ['InsertLeave', 'TextChanged'] " Whether to show autosave status on command line let g:auto_save_silent = 0 +""""""""""""""""""""""""vim-mundo settings""""""""""""""""""""""" +let g:mundo_verbose_graph = 0 +let g:mundo_width = 80 + +nnoremap u :MundoToggle + """"""""""""""""""""""""""""vim-yoink settings""""""""""""""""""""""""" if g:is_win || g:is_mac " ctrl-n and ctrl-p will not work if you add the TextChanged event to vim-auto-save events.