mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 17:52:26 +00:00
11 lines
170 B
Bash
11 lines
170 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
|