This commit is contained in:
2025-05-05 15:39:38 -07:00
parent 6777e86614
commit 3b26b76fd2
18 changed files with 2098 additions and 0 deletions

View File

@@ -15,6 +15,14 @@ HISTFILE=~/.zsh_history
HISTSIZE=10000
HISTFILESIZE=2000
HISTCONTROL=ignoreboth
# as soon as you hit enter, append to $HISTFILE
setopt INC_APPEND_HISTORY
# merge history from all running shells
setopt SHARE_HISTORY
# ignore duplicates and trivial commands
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_SPACE
# fpath=(/Users/sudacode/.docker/completions $fpath)
FPATH="$HOME/.docker/completions:$FPATH"