Skip to content

Instantly share code, notes, and snippets.

@chocolatkey
Created October 14, 2017 23:54
Show Gist options
  • Save chocolatkey/603e2c26897fc57ae6369636abdcdcfa to your computer and use it in GitHub Desktop.
Save chocolatkey/603e2c26897fc57ae6369636abdcdcfa to your computer and use it in GitHub Desktop.
babbage bash config
# Only load Liquid Prompt in interactive shells, not from a script or from scp
[[ $- = *i* ]] && source ~/liquidprompt/liquidprompt
# Muh colors!
alias grep='grep --color' # show differences in colour alias
egrep='egrep --color=auto' # show differences in colour
alias fgrep='fgrep --color=auto' # show differences in colour
alias ls='ls -hF --color=tty' # classify files in colour
alias dir='ls --color=auto --format=vertical'
alias vdir='ls --color=auto --format=long'
# Muh shortcuts
alias ll='ls -l' # long list
alias la='ls -A' # all but . and ..
alias l='ls -CF' #
export PATH=$PATH:/u/hstark/pbin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment