blob: 5907616fdee514fe263dc03bb31efc24a6676197 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
function info() {
antidote_dir='/usr/share/zsh-antidote'
echo "--------------------------------------------------"
echo "antidote has been installed to $antidote_dir"
echo "put this in your zshrc to use it!"
echo "
source '"$antidote_dir"/antidote.zsh'
antidote load
"
echo "--------------------------------------------------"
}
function post_install() {
info
}
|