diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-12 06:56:19 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-12 06:56:19 -0400 |
commit | 2fc00fab9c71934fde3411539fab0315aa06ab65 (patch) | |
tree | 214e6f1b0e5fb04114c083bd2dab794648e24945 /home/.bashrc | |
parent | Add installation instructions to README.md (diff) | |
download | dotfiles.core-2fc00fab9c71934fde3411539fab0315aa06ab65.tar.gz dotfiles.core-2fc00fab9c71934fde3411539fab0315aa06ab65.tar.bz2 dotfiles.core-2fc00fab9c71934fde3411539fab0315aa06ab65.zip |
Fix comments and formatting
Diffstat (limited to 'home/.bashrc')
-rw-r--r-- | home/.bashrc | 10 |
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 |
7 | if [[ $- != *i* ]]; then | 14 | if [[ $- != *i* ]]; then |
8 | return | 15 | return |
9 | fi | 16 | fi |
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 |