Blame view
templates/zshrc.sh
414 Bytes
|
9f172c720
|
1 |
#@IgnoreInspection AddShebang |
|
c73235dd2
|
2 |
|
|
1e57f178b
|
3 |
export ZCFG=$HOME/.config/zsh-config |
|
65f6e5cb0
|
4 |
# ENVIRONMENT: |
|
c12c31621
|
5 |
export GJ_ENV=local_aptproxy |
|
65f6e5cb0
|
6 |
|
|
f7f123531
|
7 8 9 10 |
export LANG=en_US.UTF-8 # Compilation flags export ARCHFLAGS="-arch x86_64" |
|
8abd22b22
|
11 |
# User configuration |
|
8abd22b22
|
12 13 |
export PATH=$HOME/bin:/usr/local/bin:$PATH # export MANPATH="/usr/local/man:$MANPATH" |
|
c73235dd2
|
14 |
plugins=( |
|
c73235dd2
|
15 16 |
#meteor node npm ) |
|
8abd22b22
|
17 |
|
|
c12c31621
|
18 |
# Aliases |
|
c73235dd2
|
19 20 21 |
if [ -f $ZCFG/dotfiles/zshrc.sh ]; then
. $ZCFG/dotfiles/zshrc.sh
fi
|