Blame view
templates/zshrc.sh
671 Bytes
|
9f172c720
|
1 |
#@IgnoreInspection AddShebang |
|
c73235dd2
|
2 |
|
|
1e57f178b
|
3 |
export ZCFG=$HOME/.config/zsh-config |
|
2d28df687
|
4 |
export ZCFG_SPLIT=1 |
|
1e57f178b
|
5 |
|
|
2d28df687
|
6 |
# Environment |
|
c12c31621
|
7 |
export GJ_ENV=local_aptproxy |
|
f7f123531
|
8 |
export LANG=en_US.UTF-8 |
|
f7f123531
|
9 |
export ARCHFLAGS="-arch x86_64" |
|
8abd22b22
|
10 |
# User configuration |
|
8abd22b22
|
11 12 |
export PATH=$HOME/bin:/usr/local/bin:$PATH # export MANPATH="/usr/local/man:$MANPATH" |
|
6e25b8460
|
13 14 15 16 17 18 19 20 21 22 23 24 |
# if [ "1" == "2" ]; then # #sudo apt-get -yq python-setuptools # # #sudo easy_install pip # #sudo pip install virtualenvwrapper # # mkvirtualenv cb-meteor # pip install nodeenv # nodeenv -p # # # curl https://install.meteor.com/ | sh # fi |
|
c73235dd2
|
25 |
plugins=( |
|
2d28df687
|
26 27 |
# meteor # node npm |
|
c73235dd2
|
28 |
) |
|
8abd22b22
|
29 |
|
|
2d28df687
|
30 |
# Main .zshrc |
|
c73235dd2
|
31 32 33 |
if [ -f $ZCFG/dotfiles/zshrc.sh ]; then
. $ZCFG/dotfiles/zshrc.sh
fi
|