diff options
-rw-r--r-- | halfway/options.zsh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/halfway/options.zsh b/halfway/options.zsh new file mode 100644 index 0000000..9de8d4d --- /dev/null +++ b/halfway/options.zsh @@ -0,0 +1,6 @@ +setopt extended_history # Record timestamp of command in HISTFILE. +setopt hist_expire_dups_first # Delete duplicates first when HISTFILE size exceeds HISTSIZE. +setopt hist_ignore_dups # Ignore duplicated commands history list. +setopt hist_ignore_space # Ignore commands that start with space. +setopt hist_verify # Show command with history expansion to user before running it. +setopt share_history # Share command history data. |