summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <bsima@groq.com>2022-06-28 09:25:26 -0700
committerBen Sima <bsima@groq.com>2022-06-28 09:25:42 -0700
commit8a0f4596d6bcf180008d5c93a3695e52276073cc (patch)
tree2a4a26f2caf230ae245e8dfe926ca2eb588f8e62
parente4ce25e30530059487556cccf8a8604986ccfb8d (diff)
fix .vimrc.local path
-rw-r--r--lib/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vimrc b/lib/vimrc
index aee9433..9b429d3 100644
--- a/lib/vimrc
+++ b/lib/vimrc
@@ -276,6 +276,6 @@ colorscheme antiphoton
"call s:hi('diffRemoved', s:white, s:red)
" load ~/.vimrc.local last for local overrides
-if filereadable('~/.vimrc.local')
+if filereadable(expand('~/.vimrc.local'))
source ~/.vimrc.local
endif