blob: f6914519cf2e759d2a1e99e67687c420ae0a2eee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
source ~/.config/bash/environment.sh
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
source ~/.config/bash/functions.sh
source ~/.config/bash/alias.sh
|