Created
January 14, 2019 14:40
-
-
Save florido/49af86aab8abfe8c9dbc42706443580d to your computer and use it in GitHub Desktop.
ZSH setup and plugins I use with http://getantibody.github.io/
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
# 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 |
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
# 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