summaryrefslogtreecommitdiff
path: root/.zshrc
blob: a883e7166b71fedeb334f650c423b8ac13e357ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
autoload -Uz compinit promptinit

[[ -f $HOME/.zcompdump ]] && rm -f $HOME/.zcompdump

compinit
promptinit 
zstyle ':completion:*' menu select rehash    

setopt \
    incappendhistory \
    extendedglob \
    notify \
    autocd \
    globstarshort \
    nobeep

unsetopt \
    nomatch

HISTFILE=$HOME/.histfile
HISTSIZE=9999999
SAVEHIST=9999999

if [[ -f /etc/os-release ]]; then
    source /etc/os-release
fi


source $HOME/.config/zsh/aliases.zsh
source $HOME/.config/zsh/env.zsh
source $HOME/.config/zsh/prompt.zsh
source $HOME/.config/zsh/functions.zsh
source $HOME/.config/zsh/plugins.zsh