nix-config/roles/zsh/files/.zshrc

25 lines
328 B
Bash
Raw Normal View History

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