Prepend 'directory' with per-user folder instead of reset
On some setups ~/.cache doesn't exist. In this case, vim will always warn that recovery is impossible when opening a file. It's better to have swap files in the current directory than have none at all.master
parent
7377bb584f
commit
601a0c7c8e
|
@ -55,12 +55,12 @@ if has('win32')
|
||||||
" Also, Consolas is more widely available than Luxi
|
" Also, Consolas is more widely available than Luxi
|
||||||
set guifont=Consolas:h9:cANSI
|
set guifont=Consolas:h9:cANSI
|
||||||
" Store swap files together in the user's temp directory
|
" Store swap files together in the user's temp directory
|
||||||
set directory=$TEMP\\\
|
set directory^=$TEMP\\\
|
||||||
elseif has('unix')
|
elseif has('unix')
|
||||||
" Nice font and size (escape spaces) (GUI only)
|
" Nice font and size (escape spaces) (GUI only)
|
||||||
set guifont=Luxi\ Mono\ 9
|
set guifont=Luxi\ Mono\ 9
|
||||||
" Store swap files together in the user's cache directory
|
" Store swap files together in the user's cache directory
|
||||||
set directory=~/.cache/vim//
|
set directory^=~/.cache/vim//
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Open all folds by default
|
" Open all folds by default
|
||||||
|
|
Reference in New Issue