Skip to content

Instantly share code, notes, and snippets.

@GuillaumeGomez
Created January 8, 2015 18:54
Show Gist options
  • Save GuillaumeGomez/415a28736e0deb908b9a to your computer and use it in GitHub Desktop.
Save GuillaumeGomez/415a28736e0deb908b9a to your computer and use it in GitHub Desktop.
# Normal Colors
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue
Purple='\e[0;35m' # Purple
Cyan='\e[0;36m' # Cyan
White='\e[0;37m' # White
# Bold
BBlack='\e[1;30m' # Black
BRed='\e[1;31m' # Red
BGreen='\e[1;32m' # Green
BYellow='\e[1;33m' # Yellow
BBlue='\e[1;34m' # Blue
BPurple='\e[1;35m' # Purple
BCyan='\e[1;36m' # Cyan
BWhite='\e[1;37m' # White
NC="\e[m"
HISTCONTROL=erasedups
HISTFILE=.bach_history
PS1="$BRed\u $BBlue@ $BYellow$PWD $BPurple>$NC "
alias grep="grep 'color=auto"
alias ls="ls --color=auto"
alias ll="ls -l"
alias lla="ls -la"
alias la="ls -a"
alias ne="emacs -nw"
export PAGER=less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment