aboutsummaryrefslogtreecommitdiff
path: root/home/.bashrc
blob: 7755643386a2f3ab1e42693294ef86f4a76f6a49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/local/bin/bash
#
# FILE  : dotfiles.core/home/.bashrc
# TARGET: ~/.bashrc
# AUTHOR: tgwil
#
# This is the core Bash configuration for all TGWIL accounts on all
# systems. It contains only those configurations which are applicable
# to (almost) every situation. Situational configurations should go
# in their respective situational repositories.


########################################################################
## Test for interactive shell
########################################################################
if [[ $- != *i* ]]; then
	return
fi


########################################################################
## PATH
########################################################################
# ~/bin is used for personal scripts and other executables used only
# by this user.
PATH=$PATH:$HOME/bin


########################################################################
## Bash completion
########################################################################
[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \
    && source /usr/local/share/bash-completion/bash_completion.sh