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