feat: Updates git config.

This commit is contained in:
2025-03-26 19:51:51 -04:00
parent ad5ade6679
commit afdedc5acf
2 changed files with 12 additions and 0 deletions

View File

@@ -22,3 +22,8 @@
username = michael username = michael
[push] [push]
autoSetupRemote = true autoSetupRemote = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f

View File

@@ -216,6 +216,7 @@ source <(kubectl completion zsh)
# I tried sourcing them in the the `.zshenv` files, but did not work. # I tried sourcing them in the the `.zshenv` files, but did not work.
_source_if "$ZDOTDIR/.zshrc-local" _source_if "$ZDOTDIR/.zshrc-local"
_source_if "$LOCAL_ENV" _source_if "$LOCAL_ENV"
<<<<<<< HEAD
# pnpm # pnpm
export PNPM_HOME="/Users/michael/.local/share/pnpm" export PNPM_HOME="/Users/michael/.local/share/pnpm"
@@ -224,3 +225,9 @@ case ":$PATH:" in
*) export PATH="$PNPM_HOME:$PATH" ;; *) export PATH="$PNPM_HOME:$PATH" ;;
esac esac
# pnpm end # 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