19 lines
356 B
Bash
19 lines
356 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
|
|
|
|
# MacOS specific
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
if [ -f .iterm2_shell_integration ]; then
|
|
source .iterm2_shell_integration
|
|
fi
|
|
fi
|
|
|