Skip to content

Instantly share code, notes, and snippets.

@scottstanfield
Created February 21, 2014 19:23
Show Gist options
  • Select an option

  • Save scottstanfield/9141465 to your computer and use it in GitHub Desktop.

Select an option

Save scottstanfield/9141465 to your computer and use it in GitHub Desktop.
# 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