aboutsummaryrefslogtreecommitdiff
path: root/home/.bashrc
blob: 7496612d70748c034ac92d7e26afbe238d8981f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/local/bin/bash
# FILE  : dotfiles.core/home/.bashrc
# TARGET: ~/.bashrc
# AUTHOR: tgwil

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

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