.dotfiles/zsh/.zshrc

44 lines
1.3 KiB
Bash
Raw Normal View History

# zsh history file
export HISTFILE="$XDG_STATE_HOME/zsh/history"
2023-07-03 15:58:21 +02:00
export HISTSIZE=100
2023-05-30 23:49:02 +02:00
2023-05-31 11:21:26 +02:00
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc.
2023-05-30 23:49:02 +02:00
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
2023-05-31 11:21:26 +02:00
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
2023-05-30 23:49:02 +02:00
fi
## pre plugin load
# nvm
2023-05-30 23:49:02 +02:00
export NVM_COMPLETION=true
# source antidote
source $ZDOTDIR/.antidote/antidote.zsh
antidote load
2024-02-01 14:50:39 +01:00
unsetopt autocd
2023-05-30 23:49:02 +02:00
# pyenv
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
# ggman
eval "$(ggman shellrc)"
# custom functions and aliases
source "$ZDOTDIR/aliases.zsh"
source "$ZDOTDIR/scripts.zsh"
2023-05-30 23:49:02 +02:00
# 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
2023-05-30 23:49:02 +02:00
# opam configuration
# [[ ! -r /Users/janezicmatej/.opam/opam-init/init.zsh ]] || source /Users/janezicmatej/.opam/opam-init/init.zsh > /dev/null 2> /dev/null
2023-05-31 11:21:26 +02:00
# To customize prompt, run `p10k configure` or edit ~/.config/zsh/.p10k.zsh.
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh