_setup.vim 373 B

123456789101112
  1. let &rtp = expand('<sfile>:p:h:h') . ',' . &rtp . ',' . expand('<sfile>:p:h:h') . '/after'
  2. set bs=2
  3. ru plugin/delimitMate.vim
  4. let runVimTests = expand('<sfile>:p:h').'/build/runVimTests'
  5. if isdirectory(runVimTests)
  6. let &rtp = runVimTests . ',' . &rtp
  7. endif
  8. let vimTAP = expand('<sfile>:p:h').'/build/VimTAP'
  9. if isdirectory(vimTAP)
  10. let &rtp = vimTAP . ',' . &rtp
  11. endif