blob: bfa63174f0fb4555fe347958550f6e69a91cf748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# zsh/history.zsh
#
HISTFILE=~/.zsh_history
HISTSIZE=2000
SAVEHIST=1800
# ignore these commands without arguments
HISTIGNORE="cd:ls:ll"
# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=zsh: #
|