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