about summary refs log tree commit diff stats
path: root/.config/zsh/.zshrc
blob: aeeaaa83e0983249b0c5b6bde27ec9b83c24584b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
autoload -U colors && colors	    # colors
autoload -U compinit && compinit    # basic completion
autoload -U compinit colors zcalc   # theming
setopt PROMPT_SUBST
setopt  autocd autopushd pushdignoredups

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