We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee56666 commit f9373c6Copy full SHA for f9373c6
zsh/.zsh/2-plugins.zsh
@@ -11,6 +11,7 @@ plugins=(
11
fzf
12
gh
13
git
14
+ kubectl
15
macos
16
pip
17
rust
zsh/.zsh/alias.zsh
@@ -38,6 +38,7 @@ alias c="clear"
38
alias h='history|grep'
39
# alias mamba='micromamba'
40
alias s='kitty +kitten ssh'
41
+alias k='kubectl'
42
43
# Very annoying, disabled
44
alias sl="ls"
zsh/.zsh/kubernetes.zsh
@@ -0,0 +1,4 @@
1
+source <(kubectl completion zsh)
2
+
3
+# 'k' uses k8s autocomplete
4
+complete -F __start_kubectl k
zsh/.zshrc
@@ -4,4 +4,4 @@ ZSH_FILES_DIRECTORY=$HOME/.zsh
for i in $ZSH_FILES_DIRECTORY/*; do
5
source $i
6
done
7
-# zprofeval "$(uv generate-shell-completion zsh)"# >>> mamba initialize >>>
+# zprof
0 commit comments