Commit a911fd58464a660e202b3ba1ad2ec6edcd86d20b
1 parent
1594a880b5
Exists in
master
and in
2 other branches
zshrc.sh - HISTFILE
Showing 1 changed file with 4 additions and 0 deletions Inline Diff
templates/zshrc.sh
1 | #@IgnoreInspection AddShebang | 1 | #@IgnoreInspection AddShebang |
2 | # ENVIRONMENT: | 2 | # ENVIRONMENT: |
3 | export GJ_DEVENV=local_aptproxy | 3 | export GJ_DEVENV=local_aptproxy |
4 | 4 | ||
5 | export ZCFG=~/.config/zsh-config | 5 | export ZCFG=~/.config/zsh-config |
6 | # Path to your oh-my-zsh installation. | 6 | # Path to your oh-my-zsh installation. |
7 | export ZSH=$ZCFG/packages/oh-my-zsh | 7 | export ZSH=$ZCFG/packages/oh-my-zsh |
8 | 8 | ||
9 | export LANG=en_US.UTF-8 | 9 | export LANG=en_US.UTF-8 |
10 | 10 | ||
11 | # Compilation flags | 11 | # Compilation flags |
12 | export ARCHFLAGS="-arch x86_64" | 12 | export ARCHFLAGS="-arch x86_64" |
13 | 13 | ||
14 | # Themes are in (...)/oh-my-zsh/themes/ or "random" | 14 | # Themes are in (...)/oh-my-zsh/themes/ or "random" |
15 | ZSH_THEME="muse" | 15 | ZSH_THEME="muse" |
16 | 16 | ||
17 | CASE_SENSITIVE="true" | 17 | CASE_SENSITIVE="true" |
18 | DISABLE_AUTO_UPDATE="true" | 18 | DISABLE_AUTO_UPDATE="true" |
19 | #DISABLE_AUTO_TITLE="true" | 19 | #DISABLE_AUTO_TITLE="true" |
20 | ENABLE_CORRECTION="false" | 20 | ENABLE_CORRECTION="false" |
21 | COMPLETION_WAITING_DOTS="true" | 21 | COMPLETION_WAITING_DOTS="true" |
22 | DISABLE_UNTRACKED_FILES_DIRTY="true" | 22 | DISABLE_UNTRACKED_FILES_DIRTY="true" |
23 | HIST_STAMPS="dd.mm.yyyy" | 23 | HIST_STAMPS="dd.mm.yyyy" |
24 | ZSH_CUSTOM=ZCFG/custom | 24 | ZSH_CUSTOM=ZCFG/custom |
25 | 25 | ||
26 | plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload | 26 | plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload |
27 | #pip python virtualenv virtualenvwrapper | 27 | #pip python virtualenv virtualenvwrapper |
28 | #meteor node npm | 28 | #meteor node npm |
29 | ) | 29 | ) |
30 | 30 | ||
31 | # User configuration | 31 | # User configuration |
32 | export PATH=$HOME/bin:/usr/local/bin:$PATH | 32 | export PATH=$HOME/bin:/usr/local/bin:$PATH |
33 | # export MANPATH="/usr/local/man:$MANPATH" | 33 | # export MANPATH="/usr/local/man:$MANPATH" |
34 | 34 | ||
35 | export HISTFILESIZE= | ||
36 | export HISTSIZE= | ||
37 | export HISTFILE=~/.history | ||
38 | |||
35 | source $ZSH/oh-my-zsh.sh | 39 | source $ZSH/oh-my-zsh.sh |
36 | 40 | ||
37 | if [ -f ~/.config/zsh-config/templates/bash_aliases.sh ]; then | 41 | if [ -f ~/.config/zsh-config/templates/bash_aliases.sh ]; then |
38 | . ~/.config/zsh-config/templates/bash_aliases.sh | 42 | . ~/.config/zsh-config/templates/bash_aliases.sh |
39 | fi | 43 | fi |
40 | 44 |