dot_files/dot_oh-my-zsh/custom/tools/kubectl.zsh
Viktor Barzin 55b0d31604 Refactor dotfiles - 2026-01-18
Changes:
- Refactored .zshrc into modular oh-my-zsh/custom/ files
- Created aliases.zsh, functions.zsh, path.zsh, keybindings.zsh
- Added bira-time.zsh-theme (bira with timestamp)
- Added tools/*.zsh for pyenv, nvm, kubectl
- Updated .tmux.conf.local with cross-platform support
- Updated gpakosz/.tmux framework
- Cleaned up .zshenv
2026-01-18 14:23:48 +00:00

10 lines
331 B
Bash

# Kubectl configuration
# Auto-loaded by oh-my-zsh from $ZSH_CUSTOM/tools/
# Note: This must run after compinit, which oh-my-zsh handles
if command -v kubectl >/dev/null 2>&1; then
source <(kubectl completion zsh)
fi
# Load golang path if exists
[[ -f /etc/profile.d/golang_path.sh ]] && source /etc/profile.d/golang_path.sh