Skip to content

Instantly share code, notes, and snippets.

@fungiboletus
Created January 7, 2022 11:41
Show Gist options
  • Select an option

  • Save fungiboletus/08eb76ab29a3fcb40bf6212cb22f3f14 to your computer and use it in GitHub Desktop.

Select an option

Save fungiboletus/08eb76ab29a3fcb40bf6212cb22f3f14 to your computer and use it in GitHub Desktop.

Revisions

  1. fungiboletus created this gist Jan 7, 2022.
    15 changes: 15 additions & 0 deletions .zshrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    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"