Created
November 30, 2013 14:27
-
-
Save mattjmorrison/7719741 to your computer and use it in GitHub Desktop.
.zshrc
This file contains 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
#!/bin/zsh | |
# vim: set foldmarker=<<,>> foldlevel=1 foldmethod=marker: | |
#=================================================================================== | |
# .__ | |
# ________ _____| |_________ ____ | |
# \___ / / ___/ | \_ __ \_/ ___\ | |
# / / \___ \| Y \ | \/\ \___ | |
# /_____ \/____ >___| /__| \___ > | |
# \/ \/ \/ \/ | |
#=================================================================================== | |
# Setup antigen <<1 | |
#------------------------------------------------------------------------------- | |
if [[ ! -s ~/.antigen.zsh ]] | |
then | |
curl https://raw.github.com/zsh-users/antigen/master/antigen.zsh > .antigen.zsh | |
fi | |
ANTIGEN_DEFAULT_REPO_URL=https://github.com/mattjmorrison/zsh_config | |
source ~/.antigen.zsh | |
# >>1 | |
# Set theme <<1 | |
#------------------------------------------------------------------------------- | |
antigen theme imt | |
# >>1 | |
# Install Bundles <<1 | |
#------------------------------------------------------------------------------- | |
antigen bundles <<EOBUNDLES | |
aliases | |
any | |
completion | |
editor-and-display | |
emacs-bindings | |
grep | |
history | |
mem_usage | |
nicemount | |
nvm | |
options | |
path | |
rvm | |
spell | |
virtualenv | |
webserver | |
work-timer | |
zsh-users/zsh-syntax-highlighting | |
EOBUNDLES | |
# >>1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment