.bashrc: add option histappend, set HISTSIZE=1000, HISTFILESIZE=2000
This commit is contained in:
parent
0f12ad84cf
commit
59c1e82c7c
3
.bashrc
3
.bashrc
|
|
@ -8,7 +8,10 @@
|
||||||
# Bash settings
|
# Bash settings
|
||||||
set -o noclobber
|
set -o noclobber
|
||||||
shopt -s checkwinsize
|
shopt -s checkwinsize
|
||||||
|
shopt -s histappend
|
||||||
export HISTCONTROL=ignoreboth
|
export HISTCONTROL=ignoreboth
|
||||||
|
export HISTSIZE=1000
|
||||||
|
export HISTFILESIZE=2000
|
||||||
export PROMPT_DIRTRIM=3
|
export PROMPT_DIRTRIM=3
|
||||||
|
|
||||||
# Color output and default options
|
# Color output and default options
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue