forked from Kraymer/F-dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eden Green
committed
Nov 13, 2017
1 parent
2985f3b
commit 13c0a42
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
source /usr/local/share/antigen/antigen.zsh | ||
|
||
# Load the oh-my-zsh's library. | ||
antigen use oh-my-zsh | ||
|
||
# Bundles from the default repo (robbyrussell's oh-my-zsh). | ||
antigen bundles <<EOBUNDLES | ||
git | ||
sublime | ||
osx | ||
copyfile | ||
virtualenvwrapper | ||
EOBUNDLES | ||
|
||
# Syntax highlighting bundle. | ||
antigen bundle zsh-users/zsh-syntax-highlighting | ||
|
||
# Load the theme. | ||
theme=themes/robbyrussell | ||
if ! antigen list | grep -q $theme; then | ||
antigen theme $HOME/.oh-my-zsh/custom $theme | ||
fi | ||
|
||
# Tell Antigen that you're done. | ||
antigen apply |