self-hosting/roles/common/templates/bashrc.j2

18 lines
499 B
Text
Raw Normal View History

2024-11-29 17:04:48 +01:00
# {{ 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