about summary refs log tree commit diff stats
path: root/.config/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.config/zsh/.zshrc')
-rw-r--r--.config/zsh/.zshrc19
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc
new file mode 100644
index 0000000..d96c017
--- /dev/null
+++ b/.config/zsh/.zshrc
@@ -0,0 +1,19 @@
+autoload -U colors && colors	    # colors
+autoload -U compinit && compinit    # basic completion
+autoload -U compinit colors zcalc   # theming
+setopt PROMPT_SUBST
+
+source "$ZDOTDIR/aliases.zsh"
+
+# plugins
+source "$ZPLUGINS/git-aliases/git-aliases.zsh"
+source "$ZPLUGINS/zsh-vi-mode/zsh-vi-mode.plugin.zsh"
+source "$ZPLUGINS/zsh-completions/zsh-completions.plugin.zsh"
+source "$ZPLUGINS/zsh-autosuggestions/zsh-autosuggestions.zsh"
+source "$ZPLUGINS/zsh-bd/bd.zsh"
+source "$ZPLUGINS/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
+source "$ZPLUGINS/banana.zsh-theme"
+
+HISTFILE="$HOME/.local/share/zsh/histfile"
+HISTSIZE=110000
+SAVEHIST=100000