Created
October 14, 2017 23:54
-
-
Save chocolatkey/603e2c26897fc57ae6369636abdcdcfa to your computer and use it in GitHub Desktop.
babbage bash config
This file contains hidden or 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
# 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