Skip to content

Instantly share code, notes, and snippets.

@dalssaso
Created May 17, 2016 21:08
Show Gist options
  • Save dalssaso/08ede2058c0bf4fdc77934cbcb7903b5 to your computer and use it in GitHub Desktop.
Save dalssaso/08ede2058c0bf4fdc77934cbcb7903b5 to your computer and use it in GitHub Desktop.
zshrc
source ~/.zplug/init.zsh
autoload colors && colors
setopt prompt_subst
zplug "zsh-users/zsh-history-substring-search"
zplug "junegunn/fzf-bin", \
from:gh-r, \
as:command, \
rename-to:fzf, \
use:"*darwin*amd64*"
zplug "hdalssaso/devops-zsh-theme"
zplug "plugins/git", from:oh-my-zsh, if:"(( $+commands[git] ))"
#zplug "themes/robbyrussell", from:oh-my-zsh
export EDITOR=subl
export PATH=${HOME}/.bin:/usr/local/bin:${PATH}
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
zplug "plugins/brew", from:oh-my-zsh, nice:10
zplug "plugins/brew-cask", from:oh-my-zsh, nice:10
zplug "plugins/docker", from:oh-my-zsh, nice:10
zplug "plugins/docker-compose", from:oh-my-zsh, nice:10
zplug "plugins/golang", from:oh-my-zsh, ignore:oh-my-zsh.sh, nice:10
zplug "plugins/osx", from:oh-my-zsh, nice:10, if:"[[ $OSTYPE == *darwin* ]]"
zplug "zsh-users/zsh-completions"
zplug "b4b4r07/enhancd", use:enhancd.sh
zplug "zsh-users/zsh-syntax-highlighting", nice:10
if ! zplug check --verbose; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
fi
zplug load --verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment