13 lines
354 B
Bash
13 lines
354 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
# clone antidote if necessary
|
||
|
[[ -e ~/.antidote ]] || git clone https://github.com/mattmc3/antidote.git ~/.antidote
|
||
|
|
||
|
# source antidote
|
||
|
. ~/.antidote/antidote.zsh
|
||
|
|
||
|
# generate static plugins
|
||
|
antidote bundle < antidote.plugins.txt > antidote.plugins.zsh
|
||
|
|
||
|
[[ -f ~/.zsh_plugins.zsh ]] || ln -s $PWD/antidote.plugins.zsh ~/.zsh_plugins.zsh
|