You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
813 B
47 lines
813 B
8 years ago
|
# Locales
|
||
|
|
||
|
export LC_ALL=en_US.UTF-8
|
||
|
export LANG=en_US.UTF-8
|
||
|
export LANGUAGE=en_US.UTF-8
|
||
|
|
||
|
# Aliases
|
||
|
|
||
|
alias rm='rm -i'
|
||
|
alias cp='cp -i'
|
||
|
alias mv='mv -i'
|
||
|
|
||
|
alias ls='ls -hFG'
|
||
|
alias l='ls -lF'
|
||
|
alias ll='ls -alF'
|
||
|
alias lt='ls -ltrF'
|
||
|
alias ll='ls -alF'
|
||
|
alias lls='ls -alSrF'
|
||
|
alias llt='ls -altrF'
|
||
|
|
||
|
# Colorize directory listing
|
||
|
|
||
|
alias ls="ls -ph --color=auto"
|
||
|
|
||
|
# Colorize grep
|
||
|
|
||
|
if echo hello|grep --color=auto l >/dev/null 2>&1; then
|
||
|
export GREP_OPTIONS="--color=auto" GREP_COLOR="1;31"
|
||
|
fi
|
||
|
|
||
|
# Shell
|
||
|
|
||
|
export CLICOLOR="1"
|
||
|
|
||
|
YELLOW="\[\033[1;33m\]"
|
||
|
NO_COLOUR="\[\033[0m\]"
|
||
|
GREEN="\[\033[1;32m\]"
|
||
|
WHITE="\[\033[1;37m\]"
|
||
|
|
||
|
source ~/.scripts/git-prompt.sh
|
||
|
|
||
|
export PS1="\[\033[1;33m\]λ $WHITE\h $GREEN\w$YELLOW\$(__git_ps1 \" \[\033[35m\]{\[\033[36m\]%s\[\033[35m\]}\")$NO_COLOUR "
|
||
|
|
||
|
# Git
|
||
|
|
||
|
source ~/.scripts/git-completion.sh
|