Here, I am checking for the existence of mvim. If it exists, then I will alias vim to `mvim -v`
5 lines
102 B
Bash
5 lines
102 B
Bash
# load the macvim version of terminal vim
|
|
if which mvim &> /dev/null; then
|
|
alias vim='mvim -v'
|
|
fi
|