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
cat ~/.zshrc | |
export ZSH="/Users/titus/.oh-my-zsh" | |
ZSH_THEME="robbyrussell" | |
DISABLE_AUTO_UPDATE="false" | |
DISABLE_UPDATE_PROMPT="true" | |
export UPDATE_ZSH_DAYS=7 | |
# Uncomment the following line if pasting URLs and other text is messed up. | |
# DISABLE_MAGIC_FUNCTIONS=true | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
# COMPLETION_WAITING_DOTS="true" | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
compinit -d ~/.oh-my-zsh/cache | |
export LANG=en_US.UTF-8 | |
export PATH="$PATH:$HOME/.rvm/bin" | |
source $HOME/antigen.zsh | |
#antigen init $HOME/.antigenrc | |
antigen use oh-my-zsh | |
antigen bundles <<EOBUNDLES | |
git | |
command-not-found | |
docker | |
zsh-users/zsh-completions | |
zsh-users/zsh-autosuggestions | |
zsh-users/zsh-syntax-highlighting | |
EOBUNDLES | |
antigen theme gianu | |
antigen apply |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment