Created
January 7, 2022 11:41
-
-
Save fungiboletus/08eb76ab29a3fcb40bf6212cb22f3f14 to your computer and use it in GitHub Desktop.
Simple .zshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unsetopt BEEP | |
source <(/opt/homebrew/bin/starship init zsh --print-full-init) | |
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh | |
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
# FZF | |
export PATH="${PATH:+${PATH}:}/opt/homebrew/opt/fzf/bin" | |
source "/opt/homebrew/opt/fzf/shell/completion.zsh" 2> /dev/null | |
source "/opt/homebrew/opt/fzf/shell/key-bindings.zsh" | |
alias pods="kubectl get pods -o wide" | |
alias services="kubectl get services -o wide" | |
alias deployments="kubectl get deployments -o wide" | |
alias ingress="kubectl get ingress -o wide" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment