mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 14:33:02 +01:00
10 lines
293 B
Bash
10 lines
293 B
Bash
HISTCONTROL=ignoreboth
|
|
HISTSIZE=1000
|
|
HISTFILESIZE=2000
|
|
source /etc/bash_completion
|
|
|
|
if [ -x /usr/share/liquidprompt/liquidprompt ]
|
|
then
|
|
# Only load liquidprompt in interactive shells, not from a script or from scp
|
|
echo $- | grep -q i 2>/dev/null && . /usr/share/liquidprompt/liquidprompt
|
|
fi
|