aboutsummaryrefslogtreecommitdiffstats
path: root/nichijou
diff options
context:
space:
mode:
Diffstat (limited to 'nichijou')
-rw-r--r--nichijou/home/config/nvim/init.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/nichijou/home/config/nvim/init.vim b/nichijou/home/config/nvim/init.vim
index f4f684b..bd87514 100644
--- a/nichijou/home/config/nvim/init.vim
+++ b/nichijou/home/config/nvim/init.vim
@@ -41,8 +41,8 @@ autocmd BufReadPost *
" Set the swap directory. The extra '/' suffix is required to make vim create
" unique filenames.
-call mkdir(expand("~/.vim/swap"), "p", 0700)
-set dir=~/.vim/swap//
+call mkdir(expand("~/.cache/nvim/swap"), "p", 0700)
+set dir=~/.cache/nvim/swap//
" Use system clipboard by default
set clipboard +=unnamedplus
@@ -198,7 +198,7 @@ set nowrap
" Enable persistent undo if it is supported
if has('persistent_undo')
- let vundodir = expand('~/.vim/undo')
+ let vundodir = expand('~/.cache/nvim/undo')
if !isdirectory(vundodir)
call mkdir(vundodir)
endif