You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
492 B
27 lines
492 B
5 years ago
|
set nocompatible
|
||
|
|
||
|
" load match-up
|
||
|
let s:path = simplify(expand('<sfile>:h').'/../..')
|
||
|
let &rtp = s:path.',' . &rtp
|
||
|
let &rtp .= ',vader.vim'
|
||
|
let &rtp .= ','.s:path.'/after'
|
||
|
|
||
|
" rtp for testing files
|
||
|
let &rtp = s:path.'/test/rtp,' . &rtp
|
||
|
|
||
|
" load other plugins, if necessary
|
||
|
" let &rtp = '~/path/to/other/plugin,' . &rtp
|
||
|
|
||
|
if empty(globpath(&rtp, 'plugin/vader.vim'))
|
||
|
echoerr 'vader not found'
|
||
|
exit!
|
||
|
endif
|
||
|
|
||
|
filetype plugin indent on
|
||
|
syntax enable
|
||
|
|
||
|
set notimeout
|
||
|
|
||
|
" match-up options go here
|
||
|
|