Skip to content

Instantly share code, notes, and snippets.

@davidcelis
Created July 31, 2012 18:53
Show Gist options
  • Save davidcelis/3219443 to your computer and use it in GitHub Desktop.
Save davidcelis/3219443 to your computer and use it in GitHub Desktop.
if [[ -x /Applications/MacVim.app/Contents/MacOS/Vim ]]
then
EDITOR="/Applications/MacVim.app/Contents/MacOS/Vim"
elif [[ -x $HOME/Applications/MacVim.app/Contents/MacOS/Vim ]]
then
EDITOR="$HOME/Applications/MacVim.app/Contents/MacOS/Vim"
else
EDITOR="vim"
fi
export EDITOR
export VISUAL=$EDITOR
alias vim=$EDITOR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment