diff options
Diffstat (limited to 'scripts/deploy/jvn_zsh.zsh')
| -rw-r--r-- | scripts/deploy/jvn_zsh.zsh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/deploy/jvn_zsh.zsh b/scripts/deploy/jvn_zsh.zsh new file mode 100644 index 0000000..25f8304 --- /dev/null +++ b/scripts/deploy/jvn_zsh.zsh @@ -0,0 +1,12 @@ +#!/bin/zsh +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" + +# Completion script +if [ -f "$SCRIPT_DIR/comp/jvn_zsh.zsh" ]; then + source "$SCRIPT_DIR/comp/jvn_zsh.zsh" +fi + +# Environment +if [ -d "$SCRIPT_DIR/bin" ]; then + export PATH="$SCRIPT_DIR/bin:$PATH" +fi |
