mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
7 lines
221 B
Bash
7 lines
221 B
Bash
# try to replace OSX's default vim by MacVim's version
|
|
MACVIM="/usr/local/bin/mvim"
|
|
|
|
# if mode indicator wasn't setup by theme, define default
|
|
if [[ "$OSTYPE" == darwin* && -e $MACVIM ]]; then
|
|
alias vim="$MACVIM -v"
|
|
fi
|