43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
|
# If not running interactively, don't do anything
|
||
|
case $- in
|
||
|
*i*) ;;
|
||
|
*) return;;
|
||
|
esac
|
||
|
export HISTCONTROL=ignoredups:erasedups
|
||
|
export HISTFILESIZE=
|
||
|
export HISTSIZE=
|
||
|
export HISTTIMEFORMAT="[%F %T] "
|
||
|
# Change the file location because certain bash sessions truncate .bash_history file upon close.
|
||
|
# http://superuser.com/questions/575479/bash-history-truncated-to-500-lines-on-each-login
|
||
|
export HISTFILE=~/.bash_history
|
||
|
# Force prompt to write history after every command.
|
||
|
# http://superuser.com/questions/20900/bash-history-loss
|
||
|
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
|
||
|
|
||
|
shopt -s autocd # change to named directory
|
||
|
shopt -s cdspell # autocorrects cd misspellings
|
||
|
shopt -s cmdhist # save multi-line commands in history as single line
|
||
|
shopt -s dotglob
|
||
|
shopt -s histappend # do not overwrite history
|
||
|
shopt -s expand_aliases # expand aliases
|
||
|
shopt -s extglob
|
||
|
#ignore upper and lowercase when TAB completion
|
||
|
bind "set completion-ignore-case on"
|
||
|
|
||
|
# colored GCC warnings and errors
|
||
|
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
||
|
|
||
|
if [ -f ~/.bash_aliases ]; then
|
||
|
. ~/.bash_aliases
|
||
|
fi
|
||
|
# enable programmable completion features (you don't need to enable
|
||
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||
|
# sources /etc/bash.bashrc).
|
||
|
if ! shopt -oq posix; then
|
||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||
|
. /usr/share/bash-completion/bash_completion
|
||
|
elif [ -f /etc/bash_completion ]; then
|
||
|
. /etc/bash_completion
|
||
|
fi
|
||
|
fi
|