Blame view

templates/zshrc.sh 1.69 KB
9f172c720   mj   .zshrc
1
  #@IgnoreInspection AddShebang
65f6e5cb0   mj   IMP template: zshrc
2
3
  # ENVIRONMENT:
  export GJ_DEVENV=local_aptproxy
b8914f261   mj   IMP templates/zsh...
4
  export ZCFG=~/.config/zsh-config
8abd22b22   mj   ADD template: zshrc
5
  # Path to your oh-my-zsh installation.
af25b226e   mj   FIX install & zshrc
6
  export ZSH=$ZCFG/packages/oh-my-zsh
8abd22b22   mj   ADD template: zshrc
7

f7f123531   mj   zshrc
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"
187882c87   mj   zshrc.sh -> REMOV...
14
  ZSH_THEME="muse"
8abd22b22   mj   ADD template: zshrc
15

65f6e5cb0   mj   IMP template: zshrc
16
  CASE_SENSITIVE="true"
9f172c720   mj   .zshrc
17
18
19
  DISABLE_AUTO_UPDATE="true"
  DISABLE_AUTO_TITLE="true"
  ENABLE_CORRECTION="true"
65f6e5cb0   mj   IMP template: zshrc
20
  COMPLETION_WAITING_DOTS="true"
65f6e5cb0   mj   IMP template: zshrc
21
  DISABLE_UNTRACKED_FILES_DIRTY="true"
65f6e5cb0   mj   IMP template: zshrc
22
  HIST_STAMPS="dd.mm.yyyy"
9f172c720   mj   .zshrc
23
  ZSH_CUSTOM=ZCFG/custom
8abd22b22   mj   ADD template: zshrc
24

9f172c720   mj   .zshrc
25
26
27
28
  plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload
  		pip python virtualenv virtualenvwrapper
  		meteor node npm
  )
8abd22b22   mj   ADD template: zshrc
29

aa203e431   mj   TEST
30
31
32
  #if [ -f ~/.config/zsh-config/templates/bash_aliases ]; then
  #    . ~/.config/zsh-config/templates/bash_aliases
  #fi
f7f123531   mj   zshrc
33

8abd22b22   mj   ADD template: zshrc
34
  # User configuration
8abd22b22   mj   ADD template: zshrc
35
36
  export PATH=$HOME/bin:/usr/local/bin:$PATH
  # export MANPATH="/usr/local/man:$MANPATH"
b6a161bbf   mj   FIX install & zshrc
37
38
39
  source ~/.zshrc
  
  # source $ZSH/oh-my-zsh.sh
65f6e5cb0   mj   IMP template: zshrc
40

65f6e5cb0   mj   IMP template: zshrc
41
42
  # ANTIGEN:
  #
af25b226e   mj   FIX install & zshrc
43
  # source $ZCFG/packages/antigen/antigen.zsh
9f172c720   mj   .zshrc
44
  #
65f6e5cb0   mj   IMP template: zshrc
45
  # MUST:
187882c87   mj   zshrc.sh -> REMOV...
46
  #antigen bundle extract
9f172c720   mj   .zshrc
47
48
  #
  #
65f6e5cb0   mj   IMP template: zshrc
49
  # NICE:
e94413065   mj   zshrc: update
50
51
  #antigen bundle iwhois
  #antigen bundle screen
b8914f261   mj   IMP templates/zsh...
52
53
  #antigen bundle ssh-agent
  #antigen bundle web-search
65f6e5cb0   mj   IMP template: zshrc
54
  # # if webdev:
b8914f261   mj   IMP templates/zsh...
55
  #antigen bundle catimg
9f172c720   mj   .zshrc
56
  #
65f6e5cb0   mj   IMP template: zshrc
57
  # docker:
b8914f261   mj   IMP templates/zsh...
58
  #antigen bundle docker
9f172c720   mj   .zshrc
59
  #
65f6e5cb0   mj   IMP template: zshrc
60
  # kde:
b8914f261   mj   IMP templates/zsh...
61
  #antigen bundle kate
9f172c720   mj   .zshrc
62
  #
764f9db21   mj   zshrc: update
63
64
65
66
67
  # removed:
  #antigen bundle autoenv
  #antigen bundle iwhois
  #antigen bundle per-directory-history
  #antigen bundle screen
65f6e5cb0   mj   IMP template: zshrc
68
69
70
  #
  # THEME #----------
  #
187882c87   mj   zshrc.sh -> REMOV...
71
72
73
  #antigen theme muse
  #
  #antigen apply
65f6e5cb0   mj   IMP template: zshrc
74
75
  
  # ssh
b8914f261   mj   IMP templates/zsh...
76
77
  # export SSH_KEY_PATH="~/.ssh/id_rsa"
  # zstyle :omz:plugins:ssh-agent agent-forwarding on
8abd22b22   mj   ADD template: zshrc
78
79
80
81
82
83
  
  # Preferred editor for local and remote sessions
  # if [[ -n $SSH_CONNECTION ]]; then
  #   export EDITOR='vim'
  # else
  #   export EDITOR='mvim'
f7f123531   mj   zshrc
84
  # fi