dotfiles/roles/zsh/files/config/.zshrc

24 lines
325 B
Bash
Raw Normal View History

2022-04-25 08:33:43 +00:00
sources=(
'aliases'
'colour'
'functions'
'fzf'
'general'
'git'
'history'
'navigation'
'nvm'
'options'
'path'
'platformsh'
'plugins'
2022-05-23 11:26:36 +00:00
'prompt'
2022-04-25 08:33:43 +00:00
'post/completion'
)
for s in "${sources[@]}"; do
source $ZDOTDIR/configs/${s}.zsh
2022-04-25 08:33:43 +00:00
done
2020-01-21 07:21:30 +00:00
2019-10-06 00:36:38 +00:00
# Local config
[[ -f ~/.zshrc.local ]] && source ~/.zshrc.local