You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
374 B
11 lines
374 B
# History
|
|
HISTFILE=~/.zsh_history
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
|
|
setopt inc_append_history # Append history as commands are executed
|
|
setopt hist_ignore_all_dups # Don't save duplicates
|
|
unsetopt share_history # Disable sharing history between terminals (sessions)
|
|
|
|
# Expansion and Globbing
|
|
setopt extended_glob # treat #, ~, and ^ as part of patterns for filename generation
|
|
|