aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc.stub.vim
blob: 72c7f7e1d6bbb35c99cc6dd5b039ff872a862ad0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" If we have Vim version >=7, and (implicitly) +eval, source real vimrc
if v:version >= 700
  runtime vimrc

" If not, prevent Vim from using any part of our configuration
else
  if has('win32') || has('win64')
    set runtimepath-=~/vimfiles
    set runtimepath-=~/vimfiles/after
  else
    set runtimepath-=~/.vim
    set runtimepath-=~/.vim/after
  endif
endif