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