mirror of
https://github.com/nikdoof/dotfiles.git
synced 2026-01-30 02:48:15 +00:00
11 lines
186 B
Bash
11 lines
186 B
Bash
# shellcheck shell=zsh
|
|
# 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
|