aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc.stub
diff options
context:
space:
mode:
Diffstat (limited to 'vim/vimrc.stub')
-rw-r--r--vim/vimrc.stub4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc.stub b/vim/vimrc.stub
index 486c71e0..bacf040c 100644
--- a/vim/vimrc.stub
+++ b/vim/vimrc.stub
@@ -1,13 +1,13 @@
" We have a big, important decision to make here.
"
" Check that we're not running in 'compatible' mode, nor that the environment
-" calls for the same, that we're running Vim v7.0.0 or newer, and that we
+" calls for the same, that we're running Vim v9.0 or newer, and that we
" haven't been invoked as just plain `vi`. If it's all clear, we can load the
" main vimrc file from ~/.vim/vimrc to use Vim in all of its incompatible
" 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 >= 900 && v:progname != 'vi'
runtime vimrc
finish
endif