Skip to content

Instantly share code, notes, and snippets.

@florido
Created January 14, 2019 14:40
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florido/49af86aab8abfe8c9dbc42706443580d to your computer and use it in GitHub Desktop.
Save florido/49af86aab8abfe8c9dbc42706443580d to your computer and use it in GitHub Desktop.
ZSH setup and plugins I use with http://getantibody.github.io/
# Bundles from the default repo (robbyrussell's oh-my-zsh).
robbyrussell/oh-my-zsh folder:plugins/git
robbyrussell/oh-my-zsh folder:plugins/github
robbyrussell/oh-my-zsh folder:plugins/heroku
robbyrussell/oh-my-zsh folder:plugins/lein
robbyrussell/oh-my-zsh folder:plugins/command-not-found
# robbyrussell/oh-my-zsh folder:plugins/common-aliases
robbyrussell/oh-my-zsh folder:plugins/autojump
robbyrussell/oh-my-zsh folder:plugins/compleat
robbyrussell/oh-my-zsh folder:plugins/brew
robbyrussell/oh-my-zsh folder:plugins/ssh-agent
# Node Plugins
robbyrussell/oh-my-zsh folder:plugins/node
# Python Plugins
robbyrussell/oh-my-zsh folder:plugins/pip
robbyrussell/oh-my-zsh folder:plugins/python
robbyrussell/oh-my-zsh folder:plugins/virtualenv
#iTerm2
robbyrussell/oh-my-zsh folder:plugins/iterm2
#antigen bundle tmux
# zsh-users
zsh-users/zsh-completions
zsh-users/zsh-syntax-highlighting
zsh-users/zsh-autosuggestions
# https://github.com/StackExchange/blackbox
StackExchange/blackbox
# Load the theme. https://github.com/denysdovhan/spaceship-prompt
denysdovhan/spaceship-prompt
#smallhadroncollider/antigen-git-rebase
# stop these errors https://github.com/asdf-vm/asdf/issues/266
# ...but make it faster https://carlosbecker.com/posts/speeding-up-zsh/
autoload -Uz compinit
if [ $(date +'%j') != $(stat -f '%Sm' -t '%j' ~/.zcompdump) ]; then
compinit;
else
compinit -C;
fi;
# antibody zsh profile
# brew cask install antibody
antibody bundle < ~/.zsh_plugins.txt > ~/.zsh_plugins.sh
source ~/.zsh_plugins.sh
#zsh-completions
fpath=(/usr/local/share/zsh-completions $fpath)
#https://github.com/asdf-vm/asdf
# brew cask install asdf
. $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash
#https://github.com/nvbn/thefuck
# brew cask install thefuck
eval "$(thefuck --alias)"
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
#hugo
export PATH="$PATH:$HOME/usr/local/bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment