# Copyright (C) 2015 Gabriel Ebner . ~/.commonshrc if [[ $- != *i* ]]; then # Shell is non-interactive. Be done now return fi HISTCONTROL=ignoredups:erasedups HISTFILESIZE=100000 HISTSIZE=100000 HISTFILE=~/.bash_history shopt -s histappend . ~/etc/liquidprompt/liquidprompt PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND" shopt -s autocd # Bash completion for i in /etc/profile.d/bash-completion /etc/bash_completion; do test -f $i && . $i && break done