Blame view
templates/zshrc.sh
1.03 KB
|
9f172c720
|
1 |
#@IgnoreInspection AddShebang |
|
65f6e5cb0
|
2 3 |
# ENVIRONMENT: export GJ_DEVENV=local_aptproxy |
|
b8914f261
|
4 |
export ZCFG=~/.config/zsh-config |
|
8abd22b22
|
5 |
# Path to your oh-my-zsh installation. |
|
af25b226e
|
6 |
export ZSH=$ZCFG/packages/oh-my-zsh |
|
8abd22b22
|
7 |
|
|
f7f123531
|
8 9 10 11 12 13 |
export LANG=en_US.UTF-8 # Compilation flags export ARCHFLAGS="-arch x86_64" # Themes are in (...)/oh-my-zsh/themes/ or "random" |
|
187882c87
|
14 |
ZSH_THEME="muse" |
|
8abd22b22
|
15 |
|
|
65f6e5cb0
|
16 |
CASE_SENSITIVE="true" |
|
9f172c720
|
17 |
DISABLE_AUTO_UPDATE="true" |
|
10d1ced49
|
18 19 |
#DISABLE_AUTO_TITLE="true" ENABLE_CORRECTION="false" |
|
65f6e5cb0
|
20 |
COMPLETION_WAITING_DOTS="true" |
|
65f6e5cb0
|
21 |
DISABLE_UNTRACKED_FILES_DIRTY="true" |
|
65f6e5cb0
|
22 |
HIST_STAMPS="dd.mm.yyyy" |
|
9f172c720
|
23 |
ZSH_CUSTOM=ZCFG/custom |
|
8abd22b22
|
24 |
|
|
9f172c720
|
25 |
plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload |
|
10d1ced49
|
26 27 |
#pip python virtualenv virtualenvwrapper #meteor node npm |
|
9f172c720
|
28 |
) |
|
8abd22b22
|
29 30 |
# User configuration |
|
8abd22b22
|
31 32 |
export PATH=$HOME/bin:/usr/local/bin:$PATH # export MANPATH="/usr/local/man:$MANPATH" |
|
a911fd584
|
33 34 35 |
export HISTFILESIZE= export HISTSIZE= export HISTFILE=~/.history |
|
10d1ced49
|
36 |
source $ZSH/oh-my-zsh.sh |
|
8abd22b22
|
37 |
|
|
10d1ced49
|
38 39 40 |
if [ -f ~/.config/zsh-config/templates/bash_aliases.sh ]; then
. ~/.config/zsh-config/templates/bash_aliases.sh
fi
|