feat(kubernetes): remove tools, simplify setup and rely on rtx

This commit is contained in:
2023-05-25 02:23:33 +01:00
parent 5feea990d4
commit 266c6dcfac
3 changed files with 37 additions and 26 deletions

7
zshrc
View File

@@ -66,6 +66,9 @@ zstyle ':completion:*:descriptions' format '%B%d%b'
zstyle ':completion:*:make:*:targets' call-command true
zstyle ':completion:*:make:*' tag-order targets
if [ -d "$ZSH_COMPLETIONS" ]; then fpath=("$ZSH_COMPLETIONS" $fpath); fi
if [ -d "$DOTZSH_SITEFUNS" ]; then fpath=("$DOTZSH_SITEFUNS" $fpath); fi
# ==============================================================================
# Edit command line
# ==============================================================================
@@ -167,8 +170,4 @@ if [ -f "$HOME/.zshrc.local" ]; then
source "$HOME/.zshrc.local"
fi
if [ -d "$DOTZSH/site-functions" ]; then
fpath=("$DOTZSH/site-functions" $fpath)
fi
autoload -U +X bashcompinit && bashcompinit