Commit af25b226e9340b52563f8bf55a53812916438250
1 parent
c971203eb9
Exists in
master
and in
2 other branches
FIX install & zshrc
Showing 3 changed files with 16 additions and 9 deletions Side-by-side Diff
templates/zshrc.sh
... | ... | @@ -4,7 +4,7 @@ export GJ_DEVENV=local_aptproxy |
4 | 4 | |
5 | 5 | export ZCFG=~/.config/zsh-config |
6 | 6 | # Path to your oh-my-zsh installation. |
7 | -export ZSH=$ZCFG/tools/oh-my-zsh | |
7 | +export ZSH=$ZCFG/packages/oh-my-zsh | |
8 | 8 | |
9 | 9 | export LANG=en_US.UTF-8 |
10 | 10 | |
... | ... | @@ -40,7 +40,7 @@ source $ZSH/oh-my-zsh.sh |
40 | 40 | |
41 | 41 | # ANTIGEN: |
42 | 42 | # |
43 | -# source $ZCFG/tools/antigen/antigen.zsh | |
43 | +# source $ZCFG/packages/antigen/antigen.zsh | |
44 | 44 | # |
45 | 45 | # MUST: |
46 | 46 | #antigen bundle extract |
tools/install.sh
1 | 1 | #@IgnoreInspection AddShebang |
2 | -# ** Initiate with: ** | |
3 | -# cd && wget http://git.str8.biz/mj/zsh-config/raw/master/tools/install.sh -O -| sh | |
4 | -# ----------------------------------------------------------------------------------- | |
2 | +# | |
3 | +# ** Initiate with: ** | |
4 | +# cd && curl -L http://git.str8.biz/mj/zsh-config/raw/master/tools/install.sh | sh | |
5 | +# | |
6 | +# --------------------------------------------------------------------------------------------- | |
7 | +# | |
8 | +# gj@ubuntu4docker:~$ touch install.sh | |
9 | +# gj@ubuntu4docker:~$ rm install.sh && nano install.sh && chmod +x install.sh && ./install.sh | |
10 | +# | |
11 | +################################################################################################ | |
5 | 12 | |
6 | 13 | set -e |
7 | 14 | |
... | ... | @@ -11,14 +18,14 @@ if [ "$SHELL" != "$(which zsh)" ]; then |
11 | 18 | |
12 | 19 | echo "ok" |
13 | 20 | |
14 | - sudo apt-get -yq install curl dialog nano zsh | |
21 | + sudo apt-get -yq install curl dialog git nano zsh | |
15 | 22 | #sudo apt-get -yq python-setuptools |
16 | 23 | |
17 | 24 | #sudo easy_install pip |
18 | 25 | #sudo pip install virtualenvwrapper |
19 | 26 | fi |
20 | 27 | |
21 | -if [ false ]; then | |
28 | +if [ 1 == 2 ]; then | |
22 | 29 | mkvirtualenv cb-meteor |
23 | 30 | pip install nodeenv |
24 | 31 | nodeenv -p |
... | ... | @@ -30,7 +37,7 @@ if [ ! -n "$ZCNF" ]; then |
30 | 37 | fi |
31 | 38 | |
32 | 39 | if [ ! -n "$ZSH" ]; then |
33 | - ZSH=$ZCNF/tools/oh-my-zsh | |
40 | + ZSH=$ZCNF/packages/oh-my-zsh | |
34 | 41 | fi |
35 | 42 | |
36 | 43 | echo "\033[0;34mCleaning...\033[0m" |