Blame view

templates/zshrc.sh 1.67 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.
b8914f261   mj   IMP templates/zsh...
6
  export ZSH=$ZCFG/tools/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

f7f123531   mj   zshrc
30
31
32
  if [ -f ~/.config/zsh-config/templates/bash_aliases ]; then
      . ~/.config/zsh-config/templates/bash_aliases
  fi
8abd22b22   mj   ADD template: zshrc
33
  # User configuration
8abd22b22   mj   ADD template: zshrc
34
35
36
37
  export PATH=$HOME/bin:/usr/local/bin:$PATH
  # export MANPATH="/usr/local/man:$MANPATH"
  
  source $ZSH/oh-my-zsh.sh
65f6e5cb0   mj   IMP template: zshrc
38

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