Skip to content

Instantly share code, notes, and snippets.

@Puriney
Forked from puriney2/OS X termial theme
Created July 25, 2013 19:24
Show Gist options
  • Save Puriney/6082911 to your computer and use it in GitHub Desktop.
Save Puriney/6082911 to your computer and use it in GitHub Desktop.
BASH: Terminal Theme
# OS X termial theme
# tell ls to be colourful
export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
# tell grep to highlight matches
export GREP_OPTIONS='--color=auto'
# alias
alias ls='ls -FGal'
# set custom bash prompt
#export PS1="\[\033[1;34m\]\!\[\033[0m\] \[\033[1;35m\]\u\[\033[0m\]:\[\033[1;35m\]\W\[\033[0m\]$ "
export PS1="\[\e]2;\u@\H \w\a\e[32;1m\]>\[\e[0m\]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment