Skip to content

Instantly share code, notes, and snippets.

@adcreare
Last active August 22, 2017 13:56
Show Gist options
  • Save adcreare/d1b12e27636c51b76470d2435ac3eb52 to your computer and use it in GitHub Desktop.
Save adcreare/d1b12e27636c51b76470d2435ac3eb52 to your computer and use it in GitHub Desktop.
Workstation .bashrc additions to get bold terminal and the coloring i like. Works best with OSX and maybe linux mint?
### my added OS X
# make grep output nice
export GREP_OPTIONS='--color=always'
export GREP_COLOR='1;35;40'
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagacad
export PS1='\[\e[01;33m\]\u\[\e[01;0m\]@\[\e[01;32m\]\h\[\e[01;0m\]:\[\e[01;35m\]\w\[\e[01;0m\]\$ '
#export TERM="xterm-color"
#alias ls="ls -G
#add path stuff
export PATH="/usr/local/sbin:$PATH"
# bash competition OSX
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion
alias tmux='tmux -2' # for 256color
#alias tmux='tmux -u' # to get rid of unicode rendering problem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment