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