Skip to content

Instantly share code, notes, and snippets.

@camhine
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camhine/8839619 to your computer and use it in GitHub Desktop.
Save camhine/8839619 to your computer and use it in GitHub Desktop.
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
# export SOLARIZED_THEME="light"
export SOLARIZED_THEME="dark"
ZSH_THEME="blinks"
# ZSH_THEME="gallois"
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Comment this out to disable bi-weekly auto-update checks
# DISABLE_AUTO_UPDATE="true"
# Uncomment to change how many often would you like to wait before auto-updates occur? (in days)
# export UPDATE_ZSH_DAYS=13
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(
brew coffee gem git git-extras git-remote-branch
github gpg-agent node npm osx pass pow powder rbenv ruby sublime
)
# export FDK_PATH=~/bin/FDK/Tools/osx
export NPM_PATH=/usr/local/share/npm/bin
export RBENV_PATH=~/.rbenv/shims
export SBINS_PATH=/usr/local/sbin:/usr/sbin:/sbin
export PATH=$RBENV_PATH:/usr/local/bin:/usr/bin:/bin:$SBINS_PATH:~/bin:$NPM_PATH:$PATH
eval "$(rbenv init -)"
source $ZSH/oh-my-zsh.sh
FDK_EXE="~/bin/FDK/Tools/osx"
export FDK_EXE
eval "$(gpg-agent --daemon)"
unsetopt correct_all
# Source the z profile.
. `brew --prefix`/etc/profile.d/z.sh
# Never press the return key again!
function mkdircd () { mkdir -p "$@" && eval cd "\"\$$#\""; }
export EDITOR=emacs
# Add ssh keys to agent.
ssh-add 2> /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment