Added vim aliases file

Here, I am checking for the existence of mvim. If it exists, then I will
alias vim to `mvim -v`
This commit is contained in:
Nick Nisi
2012-06-12 09:59:06 -05:00
parent e07629eda4
commit 7f099d756f

4
vim/aliases.zsh Normal file
View File

@@ -0,0 +1,4 @@
# load the macvim version of terminal vim
if which mvim &> /dev/null; then
alias vim='mvim -v'
fi