aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION4
-rw-r--r--vim/filetype.vim4
-rw-r--r--vim/vimrc10
3 files changed, 13 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index a4da619e..6b1703dc 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v2.3.0
-Fri Nov 30 01:21:49 UTC 2018
+tejr dotfiles v2.4.0
+Fri Nov 30 01:28:53 UTC 2018
diff --git a/vim/filetype.vim b/vim/filetype.vim
index cc0de4e4..2e20b744 100644
--- a/vim/filetype.vim
+++ b/vim/filetype.vim
@@ -1,5 +1,5 @@
-" Override system filetype.vim if sufficiently new
-if exists('g:did_load_filetypes') || v:version < 700
+" Override system filetype.vim
+if exists('g:did_load_filetypes')
finish
endif
let g:did_load_filetypes = 1
diff --git a/vim/vimrc b/vim/vimrc
index 09b9ca0f..0e489226 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -3,8 +3,16 @@
" This file is designed to load on any build of Vim version 7.0 or newer,
" including tiny builds without +eval.
-" Require at least Vim 7.0 (released 2006-05-08)
+" Require at least Vim 7.0 (released 2006-05-08); otherwise, self-suppress as
+" much of this config as possible
if v:version < 700
+ if has('win32') || has('win64')
+ set runtimepath-=~/vimfiles
+ set runtimepath-=~/vimfiles/after
+ else
+ set runtimepath-=~/.vim
+ set runtimepath-=~/.vim/after
+ endif
finish
endif