Skip to content

Instantly share code, notes, and snippets.

@vladvinnikov
Created August 31, 2011 18:09
Show Gist options
  • Save vladvinnikov/1184237 to your computer and use it in GitHub Desktop.
Save vladvinnikov/1184237 to your computer and use it in GitHub Desktop.
.bash_profile
PATH="/usr/local/bin:/usr/local/sbin:$PATH" # if not already present
PATH="$PATH:/usr/local/mysql/bin"
export PATH=$PATH
source ~/.bashrc
##
# Your previous /Users/voland/.bash_profile file was backed up as /Users/voland/.bash_profile.macports-saved_2011-01-26_at_17:41:49
##
# MacPorts Installer addition on 2011-01-26_at_17:41:49: adding an appropriate PATH variable for use with MacPorts.
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
# Finished adapting your PATH environment variable for use with MacPorts.
# MacPorts Installer addition on 2011-01-26_at_17:41:49: adding an appropriate MANPATH variable for use with MacPorts.
export MANPATH=/opt/local/share/man:$MANPATH
# Finished adapting your MANPATH environment variable for use with MacPorts.
# MacVim Settings
alias vim=/Applications/MacVim.app/Contents/MacOS/Vim
# Add colors to files and folders
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
export RUBY_HEAP_MIN_SLOTS=1000000
export RUBY_HEAP_SLOTS_INCREMENT=500000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=50000000
export RUBY_HEAP_FREE_MIN=4096
[[ -s '/Users/voland/.rvm/scripts/rvm' ]] && . '/Users/voland/.rvm/scripts/rvm' # This loads RVM into a shell session.
if [ -f /opt/local/etc/bash_completion ]; then
. /opt/local/etc/bash_completion
fi
export USER_BASH_COMPLETION_DIR=~/.bash_completion.d
export EDITOR=mate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment