Blame view
templates/zshrc.sh
1.21 KB
|
9f172c720
|
1 |
#@IgnoreInspection AddShebang |
|
65f6e5cb0
|
2 |
# ENVIRONMENT: |
|
c12c31621
|
3 |
export GJ_ENV=local_aptproxy |
|
65f6e5cb0
|
4 |
|
|
3a8625057
|
5 6 7 |
export ZCFG=$HOME/.config/zsh-config # Path to your oh-my-zsh installation. export ZSH=$ZCFG/packages/oh-my-zsh |
|
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" |
|
176ffff3b
|
14 |
ZSH_THEME="mj" |
|
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" |
|
c12c31621
|
33 34 35 36 |
# Environment
if [ -f $ZCFG/dotfiles/environment.sh ]; then
. $ZCFG/dotfiles/environment.sh
fi
|
|
a911fd584
|
37 38 39 |
export HISTFILESIZE= export HISTSIZE= export HISTFILE=~/.history |
|
e03f7bf87
|
40 41 |
#source $ZSH/oh-my-zsh.sh source $HOME/.config/zsh-config/packages/oh-my-zsh/oh-my-zsh.sh |
|
8abd22b22
|
42 |
|
|
3a8625057
|
43 |
export ZSH=$ZCFG/packages/oh-my-zsh |
|
c12c31621
|
44 45 46 47 |
# Aliases
if [ -f $ZCFG/templates/bash_aliases.sh ]; then
. $ZCFG/templates/bash_aliases.sh
|
|
10d1ced49
|
48 |
fi |