18 lines
499 B
Text
18 lines
499 B
Text
|
# {{ ansible_managed }}
|
||
|
|
||
|
HISTCONTROL=ignoreboth # don't put duplicate lines or lines starting with space in the history.
|
||
|
shopt -s histappend # append to the history file, don't overwrite it
|
||
|
HISTSIZE=10000
|
||
|
HISTFILESIZE=10000
|
||
|
stty -ixon # Disable Ctrl-S and Ctrl-Q
|
||
|
|
||
|
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
|
||
|
|
||
|
if [ -f ~/.bash_aliases ]; then
|
||
|
. ~/.bash_aliases
|
||
|
fi
|