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

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
  export PATH=$HOME/bin:/usr/local/bin:$PATH
  # export MANPATH="/usr/local/man:$MANPATH"
b6a161bbf   mj   FIX install & zshrc
36
37
38
  source ~/.zshrc
  
  # source $ZSH/oh-my-zsh.sh
65f6e5cb0   mj   IMP template: zshrc
39

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