blob: 96f9bd6bff35073e74f0516a1a42307f53c7d2e3 (
plain)
1
2
3
4
5
6
|
post_install() {
echo 'Append these to your shell profiles to enable autocomplete:'
echo ".bashrc or .zprofile: PATH=$HOME/.local/bin:\$PATH"
echo "config.fish: set -gx PATH $HOME/.local/bin PATH"
echo "then source the appropriate autocomplete file in: $HOME/.local/lib/kw/src"
}
|