Extend bash history

This commit is contained in:
Tony Grosinger 2016-08-08 14:09:41 -07:00
parent df622f96af
commit 976f4286ed

View File

@ -9,6 +9,12 @@ alias ..="cd ..;"
alias la="ls -lha"
alias rmr="rm -r"
# History
HISTSIZE=50000
HISTFILESIZE=50000
HISTCONTROL=ignoredups:ignorespace
shopt -s histappend
# Applications
alias tmux="tmux -2"
alias grep="grep --color=auto"