diff options
author | katherine <ageha@airen-no-jikken.icu> | 2021-08-19 13:12:10 -0700 |
---|---|---|
committer | katherine <ageha@airen-no-jikken.icu> | 2021-08-19 13:12:10 -0700 |
commit | 525fda0cd25f9591578b9bfd060fdb9580f7c678 (patch) | |
tree | 074c1c0bc09e8ac559cd6f98074792bb75bcd644 | |
parent | 334cabc5ab5b56bf4646790e048f395dcf924352 (diff) | |
download | dotfiles-525fda0cd25f9591578b9bfd060fdb9580f7c678.tar.gz |
gundo -> undotree
-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() |