Last active
December 18, 2015 14:18
-
-
Save satazor/5795702 to your computer and use it in GitHub Desktop.
Bash profile (additional bash settings)
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
# 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