aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim')
-rw-r--r--.vim/vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.vim/vimrc b/.vim/vimrc
index 766de7c..5e44259 100644
--- a/.vim/vimrc
+++ b/.vim/vimrc
@@ -6,6 +6,7 @@ execute pathogen#helptags()
let g:path = fnamemodify(resolve(expand('<sfile>:p')), ':h')
runtime! functions/*.vim
+runtime! plugins/*.vim
" vim settings
set ai
@@ -45,7 +46,7 @@ ca w!! w !sudo tee > /dev/null "%"
" Persistent undo
if has("persistent_undo")
- set undodir=~/.cache/neovim/undo
+ set undodir=~/.cache/vim/undo
set undolevels=1000
set undofile
endif