Last active
January 20, 2017 13:33
-
-
Save pozgo/abd32ae8d273ab922d1780daf5f7ae67 to your computer and use it in GitHub Desktop.
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
export ZSH=$HOME/.oh-my-zsh | |
export TERM="xterm-256color" | |
export LANG="en_US.UTF-8" | |
ZSH_THEME="powerlevel9k/powerlevel9k" | |
plugins=(git bundler osx rake ruby zsh-completions) | |
source $ZSH/oh-my-zsh.sh | |
[[ -e ~/.bashrc ]] && emulate sh -c 'source ~/.bashrc' | |
# Custom Settings | |
POWERLEVEL9K_MODE='awesome-patched' | |
POWERLEVEL9K_SHORTEN_DIR_LENGTH=2 | |
POWERLEVEL9K_PROMPT_ON_NEWLINE=true | |
POWERLEVEL9K_RAM_BACKGROUND="black" | |
POWERLEVEL9K_RAM_FOREGROUND="249" | |
POWERLEVEL9K_RAM_ELEMENTS=(ram_free) | |
POWERLEVEL9K_LOAD_CRITICAL_BACKGROUND="black" | |
POWERLEVEL9K_LOAD_WARNING_BACKGROUND="black" | |
POWERLEVEL9K_LOAD_NORMAL_BACKGROUND="black" | |
POWERLEVEL9K_LOAD_CRITICAL_FOREGROUND="249" | |
POWERLEVEL9K_LOAD_WARNING_FOREGROUND="249" | |
POWERLEVEL9K_LOAD_NORMAL_FOREGROUND="249" | |
POWERLEVEL9K_LOAD_CRITICAL_VISUAL_IDENTIFIER_COLOR="red" | |
POWERLEVEL9K_LOAD_WARNING_VISUAL_IDENTIFIER_COLOR="yellow" | |
POWERLEVEL9K_LOAD_NORMAL_VISUAL_IDENTIFIER_COLOR="green" | |
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(root_indicator context dir) | |
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status vcs background_jobs history ram load) | |
POWERLEVEL9K_SHORTEN_STRATEGY="truncate_middle" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment