Commit 79c529a6c5532b24ec26949a1147c348e9c6974a
1 parent
8ac64c7750
Exists in
master
and in
2 other branches
export ZSH=$ZCFG/packages/oh-my-zsh
Showing 1 changed file with 4 additions and 4 deletions Inline Diff
templates/zshrc.sh
1 | #@IgnoreInspection AddShebang | 1 | #@IgnoreInspection AddShebang |
2 | # ENVIRONMENT: | 2 | # ENVIRONMENT: |
3 | export GJ_ENV=local_aptproxy | 3 | export GJ_ENV=local_aptproxy |
4 | 4 | ||
5 | export ZCFG=$HOME/.config/zsh-config | ||
6 | # Path to your oh-my-zsh installation. | ||
7 | export ZSH=$ZCFG/packages/oh-my-zsh | ||
8 | |||
9 | export LANG=en_US.UTF-8 | 5 | export LANG=en_US.UTF-8 |
10 | 6 | ||
11 | # Compilation flags | 7 | # Compilation flags |
12 | export ARCHFLAGS="-arch x86_64" | 8 | export ARCHFLAGS="-arch x86_64" |
13 | 9 | ||
14 | # Themes are in (...)/oh-my-zsh/themes/ or "random" | 10 | # Themes are in (...)/oh-my-zsh/themes/ or "random" |
15 | ZSH_THEME="mj" | 11 | ZSH_THEME="mj" |
16 | 12 | ||
17 | CASE_SENSITIVE="true" | 13 | CASE_SENSITIVE="true" |
18 | DISABLE_AUTO_UPDATE="true" | 14 | DISABLE_AUTO_UPDATE="true" |
19 | #DISABLE_AUTO_TITLE="true" | 15 | #DISABLE_AUTO_TITLE="true" |
20 | ENABLE_CORRECTION="false" | 16 | ENABLE_CORRECTION="false" |
21 | COMPLETION_WAITING_DOTS="true" | 17 | COMPLETION_WAITING_DOTS="true" |
22 | DISABLE_UNTRACKED_FILES_DIRTY="true" | 18 | DISABLE_UNTRACKED_FILES_DIRTY="true" |
23 | HIST_STAMPS="dd.mm.yyyy" | 19 | HIST_STAMPS="dd.mm.yyyy" |
24 | ZSH_CUSTOM=ZCFG/custom | 20 | ZSH_CUSTOM=ZCFG/custom |
25 | 21 | ||
26 | plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload | 22 | plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload |
27 | #pip python virtualenv virtualenvwrapper | 23 | #pip python virtualenv virtualenvwrapper |
28 | #meteor node npm | 24 | #meteor node npm |
29 | ) | 25 | ) |
30 | 26 | ||
31 | # User configuration | 27 | # User configuration |
32 | export PATH=$HOME/bin:/usr/local/bin:$PATH | 28 | export PATH=$HOME/bin:/usr/local/bin:$PATH |
33 | # export MANPATH="/usr/local/man:$MANPATH" | 29 | # export MANPATH="/usr/local/man:$MANPATH" |
34 | 30 | ||
35 | # Environment | 31 | # Environment |
36 | if [ -f $ZCFG/dotfiles/environment.sh ]; then | 32 | if [ -f $ZCFG/dotfiles/environment.sh ]; then |
37 | . $ZCFG/dotfiles/environment.sh | 33 | . $ZCFG/dotfiles/environment.sh |
38 | fi | 34 | fi |
39 | 35 | ||
40 | export HISTFILESIZE= | 36 | export HISTFILESIZE= |
41 | export HISTSIZE= | 37 | export HISTSIZE= |
42 | export HISTFILE=~/.history | 38 | export HISTFILE=~/.history |
43 | 39 | ||
40 | export ZCFG=$HOME/.config/zsh-config | ||
41 | # Path to your oh-my-zsh installation. | ||
42 | export ZSH=$ZCFG/packages/oh-my-zsh | ||
43 | |||
44 | source $ZSH/oh-my-zsh.sh | 44 | source $ZSH/oh-my-zsh.sh |
45 | 45 | ||
46 | 46 | ||
47 | # Aliases | 47 | # Aliases |