Blame view
templates/zshrc.sh
1.73 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. |
|
b8914f261
|
6 |
export ZSH=$ZCFG/tools/oh-my-zsh |
|
8abd22b22
|
7 8 9 10 11 |
# Set name of the theme to load. # Look in ~/.oh-my-zsh/themes/ # Optionally, if you set this to "random", it'll load a random theme each # time that oh-my-zsh is loaded. |
|
187882c87
|
12 |
ZSH_THEME="muse" |
|
8abd22b22
|
13 |
|
|
65f6e5cb0
|
14 |
CASE_SENSITIVE="true" |
|
9f172c720
|
15 16 17 |
DISABLE_AUTO_UPDATE="true" DISABLE_AUTO_TITLE="true" ENABLE_CORRECTION="true" |
|
65f6e5cb0
|
18 |
COMPLETION_WAITING_DOTS="true" |
|
65f6e5cb0
|
19 |
DISABLE_UNTRACKED_FILES_DIRTY="true" |
|
65f6e5cb0
|
20 |
HIST_STAMPS="dd.mm.yyyy" |
|
9f172c720
|
21 |
ZSH_CUSTOM=ZCFG/custom |
|
8abd22b22
|
22 |
|
|
9f172c720
|
23 24 25 26 |
plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload pip python virtualenv virtualenvwrapper meteor node npm ) |
|
8abd22b22
|
27 28 |
# User configuration |
|
8abd22b22
|
29 30 31 32 |
export PATH=$HOME/bin:/usr/local/bin:$PATH # export MANPATH="/usr/local/man:$MANPATH" source $ZSH/oh-my-zsh.sh |
|
65f6e5cb0
|
33 |
export LANG=en_US.UTF-8 |
|
65f6e5cb0
|
34 35 |
# ANTIGEN: # |
|
187882c87
|
36 |
# source $ZCFG/tools/antigen/antigen.zsh |
|
9f172c720
|
37 |
# |
|
65f6e5cb0
|
38 |
# MUST: |
|
187882c87
|
39 |
#antigen bundle extract |
|
9f172c720
|
40 41 |
# # |
|
65f6e5cb0
|
42 |
# NICE: |
|
e94413065
|
43 44 |
#antigen bundle iwhois #antigen bundle screen |
|
b8914f261
|
45 46 |
#antigen bundle ssh-agent #antigen bundle web-search |
|
65f6e5cb0
|
47 |
# # if webdev: |
|
b8914f261
|
48 |
#antigen bundle catimg |
|
9f172c720
|
49 |
# |
|
65f6e5cb0
|
50 |
# docker: |
|
b8914f261
|
51 |
#antigen bundle docker |
|
9f172c720
|
52 |
# |
|
65f6e5cb0
|
53 |
# kde: |
|
b8914f261
|
54 |
#antigen bundle kate |
|
9f172c720
|
55 |
# |
|
764f9db21
|
56 57 58 59 60 |
# removed: #antigen bundle autoenv #antigen bundle iwhois #antigen bundle per-directory-history #antigen bundle screen |
|
65f6e5cb0
|
61 62 63 |
# # THEME #---------- # |
|
187882c87
|
64 65 66 |
#antigen theme muse # #antigen apply |
|
65f6e5cb0
|
67 68 |
# ssh |
|
b8914f261
|
69 70 |
# export SSH_KEY_PATH="~/.ssh/id_rsa" # zstyle :omz:plugins:ssh-agent agent-forwarding on |
|
8abd22b22
|
71 72 73 74 75 76 77 78 79 |
# Preferred editor for local and remote sessions # if [[ -n $SSH_CONNECTION ]]; then # export EDITOR='vim' # else # export EDITOR='mvim' # fi # Compilation flags |
|
9f172c720
|
80 |
export ARCHFLAGS="-arch x86_64" |
|
8abd22b22
|
81 |
|
|
65f6e5cb0
|
82 83 84 |
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
|