11 lines
213 B
Bash
11 lines
213 B
Bash
emulate bash
|
|
source /etc/profile
|
|
emulate zsh
|
|
|
|
source $HOME/.profile
|
|
|
|
# source kubernetes shell completion
|
|
if whence kubectl > /dev/null && [ "$PROFILE_ENABLE_KUBECTL" ]; then
|
|
source <(kubectl completion zsh)
|
|
fi
|