1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
runtime defaults.vim
let g:ycm_test_plugin_dir = expand( '<sfile>:p:h:h' )
set mouse=a
set lines=30
set columns=80
set shortmess+=c
let g:ycm_confirm_extra_conf=0
augroup YCMTest
au!
au SwapExists * let v:swapchoice = 'e'
augroup END
if $AUTOPKGTEST_TMP == ''
let &runtimepath = g:ycm_test_plugin_dir . ',' . &runtimepath
elseif $YCM_TEST_VAM == 'yes'
let &runtimepath = '~/.vim,' . &runtimepath . ',~/.vim/after'
else
packadd! youcompleteme
endif
filetype plugin indent on
syntax enable
set modeline
|