Blame view

templates/zshrc.sh 1.21 KB
9f172c720   mj   .zshrc
1
  #@IgnoreInspection AddShebang
65f6e5cb0   mj   IMP template: zshrc
2
  # ENVIRONMENT:
c12c31621   mj   environment.sh
3
  export GJ_ENV=local_aptproxy
65f6e5cb0   mj   IMP template: zshrc
4

3a8625057   mj   source $HOME/.zshrc
5
6
7
  export ZCFG=$HOME/.config/zsh-config
  # Path to your oh-my-zsh installation.
  export ZSH=$ZCFG/packages/oh-my-zsh
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"
176ffff3b   mj   ADD THEME "mj"
14
  ZSH_THEME="mj"
8abd22b22   mj   ADD template: zshrc
15

65f6e5cb0   mj   IMP template: zshrc
16
  CASE_SENSITIVE="true"
9f172c720   mj   .zshrc
17
  DISABLE_AUTO_UPDATE="true"
10d1ced49   mj   zshrc.sh - COMPLE...
18
19
  #DISABLE_AUTO_TITLE="true"
  ENABLE_CORRECTION="false"
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
  plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload
10d1ced49   mj   zshrc.sh - COMPLE...
26
27
  		#pip python virtualenv virtualenvwrapper
  		#meteor node npm
9f172c720   mj   .zshrc
28
  )
8abd22b22   mj   ADD template: zshrc
29
30
  
  # User configuration
8abd22b22   mj   ADD template: zshrc
31
32
  export PATH=$HOME/bin:/usr/local/bin:$PATH
  # export MANPATH="/usr/local/man:$MANPATH"
c12c31621   mj   environment.sh
33
34
35
36
  # Environment
  if [ -f $ZCFG/dotfiles/environment.sh ]; then
      . $ZCFG/dotfiles/environment.sh
  fi
a911fd584   mj   zshrc.sh - HISTFILE
37
38
39
  export HISTFILESIZE=
  export HISTSIZE=
  export HISTFILE=~/.history
e03f7bf87   mj   source $HOME/.zshrc
40
41
  #source $ZSH/oh-my-zsh.sh
  source $HOME/.config/zsh-config/packages/oh-my-zsh/oh-my-zsh.sh
8abd22b22   mj   ADD template: zshrc
42

3a8625057   mj   source $HOME/.zshrc
43
  export ZSH=$ZCFG/packages/oh-my-zsh
c12c31621   mj   environment.sh
44
45
46
47
  
  # Aliases
  if [ -f $ZCFG/templates/bash_aliases.sh ]; then
      . $ZCFG/templates/bash_aliases.sh
10d1ced49   mj   zshrc.sh - COMPLE...
48
  fi