Removed duplicate setting and sorted the remaining
| ... | ... |
@@ -3,14 +3,11 @@ HISTFILE=$HOME/.zsh_history |
| 3 | 3 |
HISTSIZE=10000 |
| 4 | 4 |
SAVEHIST=10000 |
| 5 | 5 |
|
| 6 |
-setopt hist_ignore_dups # ignore duplication command history list |
|
| 7 |
-setopt share_history # share command history data |
|
| 8 |
- |
|
| 9 |
-setopt hist_verify |
|
| 10 |
-setopt inc_append_history |
|
| 6 |
+setopt append_history |
|
| 11 | 7 |
setopt extended_history |
| 12 | 8 |
setopt hist_expire_dups_first |
| 9 |
+setopt hist_ignore_dups # ignore duplication command history list |
|
| 13 | 10 |
setopt hist_ignore_space |
| 14 |
- |
|
| 15 |
-setopt SHARE_HISTORY |
|
| 16 |
-setopt APPEND_HISTORY |
|
| 11 |
+setopt hist_verify |
|
| 12 |
+setopt inc_append_history |
|
| 13 |
+setopt share_history # share command history data |