From f6b458e4d2573fd802ac2acafbe5e13cfbcc5702 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 24 Oct 2017 02:46:17 -0400 Subject: move the rest of vim's transient data from ~/.vim/data to ~/.cache --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zshrc') diff --git a/zshrc b/zshrc index b4c6251..b36b67f 100644 --- a/zshrc +++ b/zshrc @@ -24,7 +24,7 @@ esac # }}} mkdir -p $HOME/.vim/data/hist function vim { local zsh_hist_fname - zsh_hist_fname=$HOME/.vim/data/hist/$$ + zsh_hist_fname=$HOME/.cache/vim/hist/$$ command vim --cmd "let g:_zsh_hist_fname = '$zsh_hist_fname'" "$@" if [[ -r $zsh_hist_fname ]]; then while read line; do -- cgit v1.2.3-54-g00ecf