# Source aliases and shortcuts source ~/.config/shell/aliasrc source ~/.config/shell/shortcutsrc # History file settings HISTSIZE= HISTFILE="~/.cache/bash_history" HISTFILESIZE= HISTTIMEFORMAT="%a, %d %b %Y %T %z " # Shell Options set -o vi shopt -s autocd shopt -s histappend shopt -s checkwinsize # Prompt color_prompt=yes PS1='\[\033[1;30m\][\u@\h:]\[\033[1;31m\]\W\[\033[1;30m\]\[\033[0m\]\$ ' 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