aboutsummaryrefslogtreecommitdiff
path: root/home/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'home/.bashrc')
-rw-r--r--home/.bashrc10
1 files changed, 9 insertions, 1 deletions
diff --git a/home/.bashrc b/home/.bashrc
index 7496612..5d0b391 100644
--- a/home/.bashrc
+++ b/home/.bashrc
@@ -1,13 +1,21 @@
1#!/usr/local/bin/bash 1#!/usr/local/bin/bash
2#
2# FILE : dotfiles.core/home/.bashrc 3# FILE : dotfiles.core/home/.bashrc
3# TARGET: ~/.bashrc 4# TARGET: ~/.bashrc
4# AUTHOR: tgwil 5# AUTHOR: tgwil
6#
7# This is the core Bash configuration for all TGWIL accounts on all
8# systems. It contains only those configurations which are applicable
9# to (almost ) every situation. Situational configurations should go
10# in their respective situational repositories.
11
5 12
6# Test for interactive shell 13# Test for interactive shell
7if [[ $- != *i* ]]; then 14if [[ $- != *i* ]]; then
8 return 15 return
9fi 16fi
10 17
18
11## Bash completion 19## Bash completion
12[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \ 20[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \
13&& source /usr/local/share/bash-completion/bash_completion.sh 21 && source /usr/local/share/bash-completion/bash_completion.sh