Files
dotfiles/.zshrc
2025-04-30 10:43:49 +02:00

28 lines
703 B
Bash

# Powerlevel10k instant prompt configuration
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# Ohmyzsh configuration
ZSH_THEME="robbyrussell"
plugins=(git)
source "${HOME}/.config.local/ohmyzsh/oh-my-zsh.sh"
# Powerlevel10k configuration
source "${HOME}/.config.local/powerlevel10k/powerlevel10k.zsh-theme"
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
# fzf configuration
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# ZSH Shell specific config
HISTSIZE=1000000
SAVEHIST=1000000
setopt share_history
unsetopt autocd
# User config
source "${HOME}/.profile.local"
export EDITOR='nvim'