aboutsummaryrefslogtreecommitdiff
path: root/home/.bash_profile
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2024-10-12 13:51:54 -0400
committerTristan Williams <tgwil@tgwil.net>2024-10-12 13:51:54 -0400
commit4f9be89669942b3904daac1d9a04b08309ea25d0 (patch)
treec7e761d6eb271d29eee44c49f569067b9dfd198f /home/.bash_profile
parentFix comments and formatting (diff)
downloaddotfiles.core-4f9be89669942b3904daac1d9a04b08309ea25d0.tar.gz
dotfiles.core-4f9be89669942b3904daac1d9a04b08309ea25d0.tar.bz2
dotfiles.core-4f9be89669942b3904daac1d9a04b08309ea25d0.zip
Fix comments and formatting
Diffstat (limited to 'home/.bash_profile')
-rw-r--r--home/.bash_profile8
1 files changed, 6 insertions, 2 deletions
diff --git a/home/.bash_profile b/home/.bash_profile
index b12cc06..e10efd5 100644
--- a/home/.bash_profile
+++ b/home/.bash_profile
@@ -8,13 +8,17 @@
8# It loads each .bashrc.X file if it exists. 8# It loads each .bashrc.X file if it exists.
9 9
10 10
11# If .bashrc exists, use it 11########################################################################
12## .bashrc (core)
13########################################################################
12if [[ $- == *i* && -f ~/.bashrc ]]; then 14if [[ $- == *i* && -f ~/.bashrc ]]; then
13 . ~/.bashrc 15 . ~/.bashrc
14fi 16fi
15 17
16 18
17# If .bashrc.personal exists, use it. 19########################################################################
20## .bashrc.personal
21########################################################################
18if [[ $- == *i* && -f ~/.bashrc.personal ]]; then 22if [[ $- == *i* && -f ~/.bashrc.personal ]]; then
19 . ~/.bashrc.personal 23 . ~/.bashrc.personal
20fi 24fi