aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-07-04 17:09:41 +0200
committerPatrick Spek <p.spek@tyil.nl>2021-08-14 12:01:20 +0200
commit9bfa8880867855303d0ca9e9f0c7ba5eb90e85c3 (patch)
treeb10b62a51fcd9e102477e6ef57281bef8087ec2e /.vim
parent0c83fb6e2669bfac1b4222f8227c6530bee9f4f0 (diff)
Start using alacritty
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