aboutsummaryrefslogtreecommitdiff
path: root/vim/config/undo.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/undo.vim')
-rw-r--r--vim/config/undo.vim25
1 files changed, 0 insertions, 25 deletions
diff --git a/vim/config/undo.vim b/vim/config/undo.vim
deleted file mode 100644
index b9186d6f..00000000
--- a/vim/config/undo.vim
+++ /dev/null
@@ -1,25 +0,0 @@
-" 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')
-
- " Turn off the option by default
- set noundofile
-
- " Don't keep undo files from temporary directories or shared memory in case
- " they're secrets
- if has('autocmd')
- augroup dotfiles_undo_skip
- autocmd!
- autocmd BufWritePre
- \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/*
- \ setlocal noundofile
- augroup END
- endif
-
-endif