Adds local configuration file for vim bundles

This commit is contained in:
David Larrabee 2013-08-03 10:10:51 -04:00
parent c0a282f9a8
commit 5994cf10eb
2 changed files with 10 additions and 0 deletions

View file

@ -37,6 +37,7 @@ Put your customizations in dotfiles appended with `.local`:
* `~/.gvimrc.local`
* `~/.vimrc.local`
* `~/.zshrc.local`
* `~/.vimrc.bundles.local`
For example, your `~/.aliases.local` might look like this:
@ -61,6 +62,11 @@ Your `~/.zshrc.local` might look like this:
# recommended by brew doctor
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
Your `~/.vimrc.bundles.local` might look like this:
Bundle 'Lokaltog/vim-powerline'
Bundle 'stephenmckinney/vim-solarized-powerline'
What's in it?
-------------

View file

@ -24,4 +24,8 @@ Bundle 'tsaleh/vim-matchit'
Bundle 'vim-scripts/ctags.vim'
Bundle 'vim-scripts/tComment'
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
filetype on