Blame view

dotfiles/zshrc.sh 1.03 KB
c73235dd2   mj   .zshrc.sh: SPLIT ...
1
2
3
  #@IgnoreInspection AddShebang
  # ENVIRONMENT:
  export GJ_ENV=local_aptproxy
c73235dd2   mj   .zshrc.sh: SPLIT ...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  # Path to your oh-my-zsh installation.
  export ZSH=$ZCFG/packages/oh-my-zsh
  
  export LANG=en_US.UTF-8
  
  # Compilation flags
  export ARCHFLAGS="-arch x86_64"
  
  # Themes are in (...)/oh-my-zsh/themes/ or "random"
  ZSH_THEME="mj"
  
  CASE_SENSITIVE="true"
  DISABLE_AUTO_UPDATE="true"
  #DISABLE_AUTO_TITLE="true"
  ENABLE_CORRECTION="false"
  COMPLETION_WAITING_DOTS="true"
  DISABLE_UNTRACKED_FILES_DIRTY="true"
  HIST_STAMPS="dd.mm.yyyy"
48e7d0f23   mj   .zshrc.sh: FIX ZS...
22
  ZSH_CUSTOM=$ZCFG/custom
c73235dd2   mj   .zshrc.sh: SPLIT ...
23
24
25
26
27
28
29
30
31
32
33
  
  plugins+=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload)
  
  # User configuration
  export PATH=$HOME/bin:/usr/local/bin:$PATH
  # export MANPATH="/usr/local/man:$MANPATH"
  
  # Environment
  if [ -f $ZCFG/dotfiles/environment.sh ]; then
      . $ZCFG/dotfiles/environment.sh
  fi
1e57f178b   mj   .zshrc.sh: FIX
34
  # History
c73235dd2   mj   .zshrc.sh: SPLIT ...
35
36
37
  export HISTFILESIZE=
  export HISTSIZE=
  export HISTFILE=~/.history
1e57f178b   mj   .zshrc.sh: FIX
38
39
  # Apply
  source $ZSH/oh-my-zsh.sh
c73235dd2   mj   .zshrc.sh: SPLIT ...
40
41
42
43
  
  # Aliases
  if [ -f $ZCFG/templates/bash_aliases.sh ]; then
      . $ZCFG/templates/bash_aliases.sh
1e57f178b   mj   .zshrc.sh: FIX
44
  fi