blob: d86585ad97fe96f509b8b84ba3881ddab71f738f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/zsh
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
# Completion script
if [ -f "$SCRIPT_DIR/comp/comp.zsh" ]; then
source "$SCRIPT_DIR/comp/comp.zsh"
fi
# Environment
if [ -d "$SCRIPT_DIR/bin" ]; then
export PATH="$SCRIPT_DIR/bin:$PATH"
fi
|