Skip to content

Instantly share code, notes, and snippets.

@satazor
Last active December 18, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satazor/5795702 to your computer and use it in GitHub Desktop.
Save satazor/5795702 to your computer and use it in GitHub Desktop.
Bash profile (additional bash settings)
# make ls display colors, reinforce with CLICOLOR and LSCOLORS
export CLICOLOR=1
# customize prompt
PS1='\e[1;32m\u\e[00m@\h \e[0;31m\w\e[00m\n$ '
# aliases
alias ll='ls -la'
alias work='cd ~/Work'
alias baboom='cd ~/Work/baboom'
alias indigo='cd ~/Work/indigo'
alias subl='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'
# editor
#export EDITOR='subl -w'
# fix path
export PATH=/usr/local/git/bin:/usr/local/bin:$PATH
# java home
# uncomment if unable to run java
#export JAVA_HOME=$(/usr/libexec/java_home)
# ulimits
ulimit -n 2048
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment