14 lines
358 B
Bash
14 lines
358 B
Bash
# Put all the commands here that should run regardless of whether
|
|
# this is an interactive or non-interactive shell.
|
|
|
|
# Enable the subsequent settings only in interactive sessions
|
|
case $- in
|
|
*i*) ;;
|
|
*) return;;
|
|
esac
|
|
|
|
# Example command:
|
|
source ~/.config/shell/common
|
|
source ~/.config/shell/personal #added by 6500gitsetup
|
|
source ~/.config/shell/aliases
|