-
Notifications
You must be signed in to change notification settings - Fork 1
/
.setopt.zsh
32 lines (21 loc) · 874 Bytes
/
.setopt.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
unsetopt MENU_COMPLETE
setopt AUTO_MENU
# Basics
# If you type foo, and it isn't a command, and it is a directory in your cdpath, go there
setopt AUTO_CD
# Allow comments even in interactive shells (especially for Muness)
setopt INTERACTIVE_COMMENTS
# History
# Allow multiple terminal sessions to all append to one zsh command history
setopt APPEND_HISTORY
# Add commands as they are typed, don't wait until shell exit
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
# ===== Prompt
# Enable parameter expansion, command substitution, and arithmetic expansion in the prompt
setopt PROMPT_SUBST