diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-20 22:59:30 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-20 22:59:45 +1200 |
commit | 98f8b4cdef2b20b8d6505a02312e6cb523897163 (patch) | |
tree | 64209d6efcb70d1101acb8c69ee15f4f0f3204cf /vim/vimrc | |
parent | Remove 'esckeys' .vimrc setting (diff) | |
download | dotfiles-98f8b4cdef2b20b8d6505a02312e6cb523897163.tar.gz dotfiles-98f8b4cdef2b20b8d6505a02312e6cb523897163.zip |
Remove unnecessary 'undofile' settings
On Unix, 'undolevels' defaults to 1000, and 'undofile' defaults to off.
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -225,15 +225,6 @@ set visualbell t_vb= " Rebind Ctrl-C in insert mode to undo the current insert operation inoremap <C-C> <C-C>u -" Keep screeds of undo history -set undolevels=2000 - -" 'undodir' and 'undofile' settings will be taken care of by the -" auto_cache_dirs.vim plugin if applicable/possible -if has('persistent_undo') - set noundofile -endif - " When in visual block mode, let me move the cursor anywhere in the buffer; " don't restrict me only to regions with text if has('virtualedit') |