refacts bash/profile setup

This commit is contained in:
2026-04-21 11:19:45 +02:00
parent 5bd960d386
commit f150ed2750
52 changed files with 3446 additions and 724 deletions

9
.bash/shell/index.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Shell configuration index
# Source all shell-related configuration files
declare dir="$BASH_DOTFILES/shell"
for file in "$dir"/*.sh; do
[[ -f "$file" && "$file" != "$dir/index.sh" ]] && source "$file"
done
unset dir