aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.vimrc7
1 files changed, 4 insertions, 3 deletions
diff --git a/.vimrc b/.vimrc
index 172d740..bb65c52 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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()