skynet/shell/bashrc

12 lines
207 B
Bash
Raw Normal View History

2022-04-07 19:41:00 -05:00
#!/usr/bin/env bash
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# source shared config
for shared in ~/skynet/shell/bashrc.d/*.sh; do
source "$shared"
done