summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc33
1 files changed, 33 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
new file mode 100644
index 0000000..a883e71
--- /dev/null
+++ b/.zshrc
@@ -0,0 +1,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