777 B
777 B
Bash Configuration
This directory contains the bash configuration files organized by responsibility.
Structure
.bash/
system/: System-level configurations for.profileshell/: Shell-specific configurationstoolchains/: (Development) toolchain configurationshooks/: hooks scripts
Usage
The main .bashrc and .profile files source the appropriate index files from each category:
# In .bashrc:
[ -f "$BASH_DOTFILES/system/index.sh" ] && . "$BASH_DOTFILES/system/index.sh"
[ -f "$BASH_DOTFILES/shell/index.sh" ] && . "$BASH_DOTFILES/shell/index.sh"
[ -f "$BASH_DOTFILES/toolchains/index.sh" ] && . "$BASH_DOTFILES/toolchains/index.sh"