Created
June 20, 2013 04:46
-
-
Save rubyonrailstutor/5820368 to your computer and use it in GitHub Desktop.
excerpt from ~/.bash_profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -d /Applications/MacVim.app/ ]; then | |
# use MacVim over built-in Mac OS version | |
export PATH="/Applications/MacVim.app/Contents/MacOS:$PATH" | |
alias mvim='MacVim' | |
alias vim='Vim' | |
alias vi='Vim' | |
export EDITOR='/Applications/MacVim.app/Contents/MacOS/Vim' | |
alias vimdiff="Vim -d" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment