Created
October 16, 2015 21:32
-
-
Save emyller/4101932ae1f131082e9a to your computer and use it in GitHub Desktop.
shell configs
This file contains 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 TERM="xterm-256color" | |
source ~/.antigen/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 heroku | |
antigen bundle pip | |
antigen bundle virtualenv | |
antigen bundle virtualenvwrapper | |
# Syntax highlighting bundle. | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
# Load the theme. | |
POWERLEVEL9K_PROMPT_ON_NEWLINE=true | |
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status rbenv virtualenv time) | |
antigen theme bhilburn/powerlevel9k powerlevel9k | |
# Tell antigen that you're done. | |
antigen apply | |
# Extra settings | |
export EDITOR=vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment