aboutsummaryrefslogtreecommitdiff
path: root/home/.bashrc
blob: b1f7ea40b83576373a30ea0887ea3740c5f31948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/local/bin/bash
# ~/.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