mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 09:42:27 +00:00
10 lines
169 B
Bash
10 lines
169 B
Bash
# Source shell common
|
|
for f in ~/.config/shell-common/*.sh; do
|
|
source $f;
|
|
done
|
|
|
|
# Source zsh specific files
|
|
for f in ~/.config/zsh/*.zsh; do
|
|
source $f;
|
|
done
|