simple vimrc customizations. ~/.vimrc.before is loaded before everything. ~/.vimrc.after is loaded after all plugins load.

This commit is contained in:
Kyle West
2012-01-25 14:26:23 -05:00
parent 4c4938f769
commit 5c06824e03
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
" https://github.com/carlhuda/janus/blob/master/janus/vim/core/janus/after/plugin/vimrc_after.vim
" Customization
"
" This loads after the janus plugins so that janus-specific plugin mappings can
" be overwritten.
if filereadable(expand("~/.vimrc.after"))
source ~/.vimrc.after
endif