Don't make our own swap folder anymore as the neovim default is sane

This commit is contained in:
Kevin MacMartin 2024-03-01 22:24:29 -05:00
parent a4491baac9
commit 80e497e268

View file

@ -104,13 +104,6 @@
set ttimeout ttimeoutlen=100 "how long before timing out for terminal key codes set ttimeout ttimeoutlen=100 "how long before timing out for terminal key codes
set nomodeline "disable the use of file-based modelines as these are insecure set nomodeline "disable the use of file-based modelines as these are insecure
"create ~/.vim/swap if necessary, then use as default swap file location
if exists('*mkdir') && !isdirectory($HOME.'/.vim/swap')
call mkdir($HOME.'/.vim/swap','p')
endif
set directory=$HOME/.vim/swap,.,/var/tmp,/tmp
"FUNCTIONS: {{{ "FUNCTIONS: {{{
"enable the auto-creation of missing folders in a save path "enable the auto-creation of missing folders in a save path
if !exists('*s:MakeNewDir') if !exists('*s:MakeNewDir')