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