Changed name of project vimrc to .vimrc.project

This commit is contained in:
Nick Nisi
2012-06-16 19:02:01 -05:00
parent 83afb60bc2
commit c62e67a631
2 changed files with 6 additions and 2 deletions

View File

@@ -66,4 +66,8 @@ Then, if you would like to restore your previous configuration, run the restore
## ZSH Plugins
By default, the *.zshrc* file will source any file within .dotfiles that has the *".zsh"* suffix.
By default, the *.zshrc* file will source any file within .dotfiles that has the *".zsh"* suffix.
## Vim Per Machine and Per Project Configuration
The vimrc in this project will check for the existence of a `~/.vimrc.local`, as well as a `./.vimrc.project` allowing per-machine and per-project vim configurations.

View File

@@ -336,6 +336,6 @@ endif
" => Local, Per Project vimrc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
if filereadable(".vimrc.local")
if filereadable(".vimrc.project")
source ./.vimrc.local
endif