blob: d0e460a9114f603061cfdf4d469bbb345c90a559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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
###-tns-completion-start-###
if [ -f /home/ben/.tnsrc ]; then
source /home/ben/.tnsrc
fi
###-tns-completion-end-###
|