Skip to content

Instantly share code, notes, and snippets.

@TerrorSquad
Last active May 5, 2019 11:31
Show Gist options
  • Save TerrorSquad/275535f088eb39407cad782fa8511e25 to your computer and use it in GitHub Desktop.
Save TerrorSquad/275535f088eb39407cad782fa8511e25 to your computer and use it in GitHub Desktop.
Antigen .zshrc file
source /home/$(whoami)/antigen.zsh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle command-not-found
# Essential ZSH plugins
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-autosuggestions
# Load the theme.
antigen theme bhilburn/powerlevel9k powerlevel9k
# Font
POWERLEVEL9K_MODE="nerdfont-complete"
# POWERLEVEL9K_DISABLE_RPROMPT=true
# Prompt customization
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="▶ "
POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
OS_ICON="\uF304"
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon context dir rbenv vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator background_jobs history time)
HYPHEN_INSENSITIVE="true"
DISABLE_UNTRACKED_FILES_DIRTY="true"
# Tell Antigen that you're done.
antigen apply
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment