diff --git a/git/git/config b/git/git/config index 48bc1e6..a5f5ee5 100644 --- a/git/git/config +++ b/git/git/config @@ -22,3 +22,8 @@ username = michael [push] autoSetupRemote = true +[filter "lfs"] + process = git-lfs filter-process + required = true + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f diff --git a/zsh/config/.zshrc b/zsh/config/.zshrc index 2ee8174..fc2ac1d 100755 --- a/zsh/config/.zshrc +++ b/zsh/config/.zshrc @@ -216,6 +216,7 @@ source <(kubectl completion zsh) # I tried sourcing them in the the `.zshenv` files, but did not work. _source_if "$ZDOTDIR/.zshrc-local" _source_if "$LOCAL_ENV" +<<<<<<< HEAD # pnpm export PNPM_HOME="/Users/michael/.local/share/pnpm" @@ -224,3 +225,9 @@ case ":$PATH:" in *) export PATH="$PNPM_HOME:$PATH" ;; esac # pnpm end + +# The following lines have been added by Docker Desktop to enable Docker CLI completions. +fpath=(/Users/michael/.docker/completions $fpath) +autoload -Uz compinit +compinit +# End of Docker CLI completions