dotfiles/.zsh/setopt.zsh

26 lines
810 B
Bash
Raw Permalink Normal View History

# append command to history file once executed
setopt inc_append_history
# Do not write events to history that are duplicates of previous events
setopt HIST_IGNORE_DUPS
# When searching history don't display results already cycled through twice
setopt HIST_FIND_NO_DUPS
# Remove extra blanks from each command line being added to history
setopt HIST_REDUCE_BLANKS
setopt APPEND_HISTORY
setopt EXTENDED_HISTORY
setopt EXTENDED_GLOB
setopt AUTO_CD
2012-03-22 21:17:29 +00:00
2012-08-17 01:18:26 +00:00
# display PID when suspending processes as well
setopt longlistjobs
# try to avoid the 'zsh: no matches found...'
setopt nonomatch
2012-04-10 18:28:18 +00:00
# Turn off flow control
setopt noflowcontrol
2012-08-17 01:18:26 +00:00
# report the status of backgrounds jobs immediately
setopt notify
# whenever a command completion is attempted, make sure the entire command path
# is hashed first.
setopt hash_list_all