etc/bashrc

25 lines
486 B
Bash
Raw Normal View History

2015-09-20 09:10:00 +02:00
# Copyright (C) 2015 Gabriel Ebner
2011-04-30 20:21:21 +02:00
. ~/.commonshrc
if [[ $- != *i* ]]; then
# Shell is non-interactive. Be done now
return
fi
2015-09-20 09:10:00 +02:00
HISTCONTROL=ignoredups:erasedups
HISTFILESIZE=100000
HISTSIZE=100000
HISTFILE=~/.bash_history
shopt -s histappend
2015-09-20 09:10:00 +02:00
. ~/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