mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
16 lines
325 B
Bash
16 lines
325 B
Bash
# ignore repeated, space-started, and casual commands
|
|
export HISTIGNORE="&:[ ]*:l[sl]:[bf]g:exit"
|
|
|
|
# enable multiline historization as a single line
|
|
shopt -s cmdhist
|
|
|
|
# enable appending to histfile
|
|
shopt -s histappend
|
|
|
|
# ignore sequential duplicates
|
|
export HISTCONTROL=ignoreboth
|
|
|
|
# more!
|
|
export HISTSIZE=10000
|
|
|
|
# vim: ft=sh
|