Adds local configuration file for vim bundles
This commit is contained in:
parent
c0a282f9a8
commit
5994cf10eb
2 changed files with 10 additions and 0 deletions
|
@ -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?
|
||||
-------------
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue