dotfiles/bash/history
2013-01-01 15:49:20 +01:00

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