diff options
-rw-r--r-- | .vimrc | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -39,8 +39,6 @@ Plug 'airblade/vim-gitgutter' Plug 'junegunn/goyo.vim' -Plug 'sjl/gundo.vim' - Plug 'itchyny/lightline.vim' Plug 'MarcWeber/vim-addon-mw-utils' @@ -52,6 +50,8 @@ Plug 'dhruvasagar/vim-table-mode' Plug 'tomtom/tcomment_vim' +Plug 'mbbill/undotree' + call plug#end() @@ -70,7 +70,7 @@ nmap ga <Plug>(EasyAlign) set ttimeoutlen=100 "toggle gundo pane -nnoremap <Leader>g :GundoToggle<CR> +nnoremap <Leader>g :UndotreeToggle<CR> "snippets let g:snipMate = { 'snippet_version' : 1 } @@ -292,6 +292,7 @@ if has('autocmd') au FileType css call <SID>settings_css() au FileType d call <SID>settings_c() au FileType elixir call <SID>settings_elixir() + au FileType elm call <SID>settings_haskell() au FileType go call <SID>settings_c() au FileType haskell call <SID>settings_haskell() au FileType html call <SID>settings_html() |