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