mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-26 00:59:23 +00:00
18 lines
279 B
Bash
18 lines
279 B
Bash
# shellcheck shell=bash
|
|
# .bashrc
|
|
|
|
# Source global definitions
|
|
if [ -f /etc/bashrc ]; then
|
|
. /etc/bashrc
|
|
fi
|
|
|
|
# Source shell common
|
|
for f in ~/.config/shell-common/*.sh; do
|
|
source $f
|
|
done
|
|
|
|
# Source bash specific files
|
|
for f in ~/.config/bash/*.bash; do
|
|
source $f
|
|
done
|