Blame view

templates/zshrc.sh 1.73 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
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   mj   zshrc.sh -> REMOV...
12
  ZSH_THEME="muse"
8abd22b22   mj   ADD template: zshrc
13

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

9f172c720   mj   .zshrc
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   mj   ADD template: zshrc
27
28
  
  # User configuration
8abd22b22   mj   ADD template: zshrc
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   mj   IMP template: zshrc
33
  export LANG=en_US.UTF-8
65f6e5cb0   mj   IMP template: zshrc
34
35
  # ANTIGEN:
  #
187882c87   mj   zshrc.sh -> REMOV...
36
  # source $ZCFG/tools/antigen/antigen.zsh
9f172c720   mj   .zshrc
37
  #
65f6e5cb0   mj   IMP template: zshrc
38
  # MUST:
187882c87   mj   zshrc.sh -> REMOV...
39
  #antigen bundle extract
9f172c720   mj   .zshrc
40
41
  #
  #
65f6e5cb0   mj   IMP template: zshrc
42
  # NICE:
e94413065   mj   zshrc: update
43
44
  #antigen bundle iwhois
  #antigen bundle screen
b8914f261   mj   IMP templates/zsh...
45
46
  #antigen bundle ssh-agent
  #antigen bundle web-search
65f6e5cb0   mj   IMP template: zshrc
47
  # # if webdev:
b8914f261   mj   IMP templates/zsh...
48
  #antigen bundle catimg
9f172c720   mj   .zshrc
49
  #
65f6e5cb0   mj   IMP template: zshrc
50
  # docker:
b8914f261   mj   IMP templates/zsh...
51
  #antigen bundle docker
9f172c720   mj   .zshrc
52
  #
65f6e5cb0   mj   IMP template: zshrc
53
  # kde:
b8914f261   mj   IMP templates/zsh...
54
  #antigen bundle kate
9f172c720   mj   .zshrc
55
  #
764f9db21   mj   zshrc: update
56
57
58
59
60
  # removed:
  #antigen bundle autoenv
  #antigen bundle iwhois
  #antigen bundle per-directory-history
  #antigen bundle screen
65f6e5cb0   mj   IMP template: zshrc
61
62
63
  #
  # THEME #----------
  #
187882c87   mj   zshrc.sh -> REMOV...
64
65
66
  #antigen theme muse
  #
  #antigen apply
65f6e5cb0   mj   IMP template: zshrc
67
68
  
  # ssh
b8914f261   mj   IMP templates/zsh...
69
70
  # export SSH_KEY_PATH="~/.ssh/id_rsa"
  # zstyle :omz:plugins:ssh-agent agent-forwarding on
8abd22b22   mj   ADD template: zshrc
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   mj   .zshrc
80
  export ARCHFLAGS="-arch x86_64"
8abd22b22   mj   ADD template: zshrc
81

65f6e5cb0   mj   IMP template: zshrc
82
83
84
  if [ -f ~/.bash_aliases ]; then
      . ~/.bash_aliases
  fi