Files
.dotfiles/zsh/.zshrc

34 lines
698 B
Bash

# zsh history file
HISTFILE="$XDG_STATE_HOME/zsh/history"
HISTSIZE=10000
SAVEHIST=10000
# gnupg
export GPG_TTY=$(tty)
## pre plugin load
# zsh autosuggestions
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#ffffff,bg=cyan,bold,underline"
# source antidote
source "$ZDOTDIR/.antidote/antidote.zsh"
antidote load
unsetopt autocd
# ggman
eval "$(ggman shellrc)"
# custom functions and aliases
source "$ZDOTDIR/aliases.zsh"
source "$ZDOTDIR/scripts.zsh"
# completion
fpath=("$ZDOTDIR/completions" $fpath)
autoload -Uz compinit
compinit -d "$XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION"
zstyle ':completion:*' cache-path "$XDG_CACHE_HOME/zsh/zcompcache"
eval "$(starship init zsh)"
eval "$(direnv hook zsh)"