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