summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-10-24 02:22:00 -0400
committerJesse Luehrs <doy@tozt.net>2017-10-24 03:31:57 -0400
commitb5be9c8928854d5cd948b13d41285276b5325db0 (patch)
tree50e6cf00c7114eea879eb971b5e572f3a51a40cc /vimrc
parent73bf1a52b02bf55a8cea0d0b5e9251c21d3cb085 (diff)
downloadconf-b5be9c8928854d5cd948b13d41285276b5325db0.tar.gz
conf-b5be9c8928854d5cd948b13d41285276b5325db0.zip
simplify gundo config
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc7
1 files changed, 1 insertions, 6 deletions
diff --git a/vimrc b/vimrc
index 7820c24..9b6c8ad 100644
--- a/vimrc
+++ b/vimrc
@@ -709,14 +709,9 @@ nnoremap <silent>ft :Denite -direction=dynamictop filetype<CR>
" go
" gundo {{{
if has("python")
- function! s:gundo()
- GundoToggle
- endfunction
- nnoremap <silent>U :silent call <SID>gundo()<CR>
+ nnoremap <silent>U :silent GundoToggle<CR>
let g:gundo_help = 0
let g:gundo_preview_bottom = 1
- let g:gundo_width = 30
- let g:gundo_auto_preview = 0
else
let g:gundo_disable = 1
endif