Files
dotfiles/vim/aliases.zsh
Nick Nisi 7f099d756f Added vim aliases file
Here, I am checking for the existence of mvim. If it exists, then I will
alias vim to `mvim -v`
2012-06-12 09:59:06 -05:00

5 lines
102 B
Bash

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