aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2022-06-30 00:43:28 +1200
committerTom Ryder <tom@sanctum.geek.nz>2022-06-30 00:44:11 +1200
commit7d9234b142e497281f3a0bb3a58c125ddfe7ca6b (patch)
tree658ac8ec8c493680713e1a0a35827e30f7d8607c
parentReturn empty values for XDG on non-Unix (diff)
downloaddotfiles-7d9234b142e497281f3a0bb3a58c125ddfe7ca6b.tar.gz
dotfiles-7d9234b142e497281f3a0bb3a58c125ddfe7ca6b.zip
Add missing space in vimrc conditional
Vim9 script requires this (which is how I noticed it), and it's tidier anyway.
-rw-r--r--vim/vimrc.stub2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc.stub b/vim/vimrc.stub
index 484e881e..486c71e0 100644
--- a/vim/vimrc.stub
+++ b/vim/vimrc.stub
@@ -7,7 +7,7 @@
" glory, and then stop sourcing the rest of this file.
"
if !&compatible && !exists('$POSIXLY_CORRECT')
- if v:version >=700 && v:progname !=# 'vi'
+ if v:version >= 700 && v:progname !=# 'vi'
runtime vimrc
finish
endif