diff options
author | Starfall <us@starfall.systems> | 2024-09-16 09:04:38 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2024-09-16 09:12:59 -0500 |
commit | 09f6d9bd31a913551fef42c3d10a24cbe3996be7 (patch) | |
tree | 953aa8ca380644a93ef0e71e7aecd33bc960b3d3 /.config/zsh/history.zsh | |
parent | 7f399506b81327198e49d2b873cc0a45e88a27d8 (diff) |
zsh: minor cleanup
Diffstat (limited to '.config/zsh/history.zsh')
-rw-r--r-- | .config/zsh/history.zsh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/.config/zsh/history.zsh b/.config/zsh/history.zsh index be23491..162be39 100644 --- a/.config/zsh/history.zsh +++ b/.config/zsh/history.zsh @@ -2,8 +2,6 @@ HISTFILE=${ZDOTDIR:-$HOME}/.zsh_history HISTSIZE=10000 SAVEHIST=$HISTSIZE -# setopt extended_history # write timestamp (redundant with share_history?) -# setopt inc_append_history # write always, not just at end of session (redundant and exclusive with share_history) setopt hist_ignore_space # add leading space to hide from history setopt hist_ignore_dups # deduplicate commands run twice in a row setopt hist_ignore_all_dups # deduplicate entire history file @@ -12,7 +10,6 @@ setopt hist_verify # confirm before executing setopt share_history # import all of history in new sessions # search all of history, or display just the last 16 like the builtin `history` -# yes we should probably just use fzf which we have installed just for this function h () { [ $# -eq 0 ] &&\ fc -l ||\ |