Initial commit. Functional zshrc config setup.

This commit is contained in:
2026-01-25 10:39:50 +01:00
parent 2c6b7c7a20
commit de32ca6894
9 changed files with 240 additions and 0 deletions

19
zsh/zshrc Normal file
View File

@@ -0,0 +1,19 @@
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="${ZSH_THEME:-clean}"
plugins=(
git
zsh-syntax-highlighting
)
source $ZSH/oh-my-zsh.sh
# Modular config
source ~/.zsh/keybindings.zsh
source ~/.zsh/history.zsh
source ~/.zsh/fzf.zsh
source ~/.zsh/plugins.zsh
# Optional local overrides (not committed)
[ -f ~/.zshrc.local ] && source ~/.zshrc.local