This commit is contained in:
Jason Swank
2025-12-27 04:46:27 +00:00
parent 9ba8e7c04e
commit 139f71edb6
11 changed files with 2048 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ export GOPATH=~/go
export TMPDIR=/var/tmp
export BROWSER=open_browser.sh
export TF_PLUGIN_CACHE_DIR=~/cfa-work/.tf_cache
export TF_PLUGIN_CACHE_DIR=~/.local/state/tofu
# With ghostty + tmux + nvim, having this autoset to 'truecolor' has a weird effect
unset COLORTERM

View File

@@ -1,6 +1,5 @@
alias ls='ls --color=auto'
alias grep='grep --color'
alias vim='nvim'
fpath+=~/.local/share/zsh/functions
@@ -99,6 +98,10 @@ fi
autoload -U +X bashcompinit && bashcompinit
autoload -Uz compinit && compinit
# gcloud
if [ -f '/home/cli/google-cloud-sdk/path.zsh.inc' ]; then . '/home/cli/google-cloud-sdk/path.zsh.inc'; fi
if [ -f '/home/cli/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/cli/google-cloud-sdk/completion.zsh.inc'; fi
# kubectl
[[ $commands[kubectl] ]] && source <(kubectl completion zsh)