Blame view

templates/zshrc.sh 1.11 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

b8914f261   mj   IMP templates/zsh...
5
  export ZCFG=~/.config/zsh-config
8abd22b22   mj   ADD template: zshrc
6
  # Path to your oh-my-zsh installation.
af25b226e   mj   FIX install & zshrc
7
  export ZSH=$ZCFG/packages/oh-my-zsh
8abd22b22   mj   ADD template: zshrc
8

f7f123531   mj   zshrc
9
10
11
12
13
14
  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"
15
  ZSH_THEME="mj"
8abd22b22   mj   ADD template: zshrc
16

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

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

c12c31621   mj   environment.sh
43
44
45
46
  
  # Aliases
  if [ -f $ZCFG/templates/bash_aliases.sh ]; then
      . $ZCFG/templates/bash_aliases.sh
10d1ced49   mj   zshrc.sh - COMPLE...
47
  fi