12 lines
354 B
Bash
Executable file
12 lines
354 B
Bash
Executable file
#!/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
|