Created
February 21, 2014 19:23
-
-
Save scottstanfield/9141465 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
| # vi:ft=zsh | |
| export PATH=$HOME/bin:/usr/local/bin:$PATH:. | |
| export EDITOR=vim | |
| # Setup Antigen | |
| source $HOME/.antigen/antigen.zsh | |
| NPM=/usr/local/lib/node_modules/npm/lib/utils/completion.sh | |
| [[ -e $NPM ]] && source $NPM | |
| # Antigen | |
| antigen use oh-my-zsh | |
| antigen-bundles <<BUNDLES | |
| extract | |
| history | |
| node | |
| npm | |
| pip | |
| python | |
| zsh-users/zsh-completions src | |
| zsh-users/zsh-history-substring-search | |
| zsh-users/zsh-syntax-highlighting | |
| BUNDLES | |
| # Prompt theme | |
| antigen theme alanpeabody | |
| antigen apply | |
| # Options | |
| bindkey -e | |
| setopt nocorrectall histignorealldups sharehistory | |
| DISABLE_AUTO_UPDATE="true" | |
| DISABLE_CORRECTION="true" | |
| COMPLETION_WAITING_DOTS=true | |
| DISABLE_UNTRACKED_FILES_DIRTY="true" | |
| # Aliases go here | |
| alias ls="ls --color=tty -F" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment