Skip to content

Commit 63c3566

Browse files
committed
.bash_profile: Fixed indentation.
1 parent 0c084f8 commit 63c3566

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.bash_profile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export PATH="$HOME/bin:$PATH";
55
# * ~/.path can be used to extend `$PATH`.
66
# * ~/.extra can be used for other settings you don’t want to commit.
77
for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do
8-
[ -r "$file" ] && [ -f "$file" ] && source "$file";
8+
[ -r "$file" ] && [ -f "$file" ] && source "$file";
99
done;
1010
unset file;
1111

@@ -22,19 +22,19 @@ shopt -s cdspell;
2222
# * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux`
2323
# * Recursive globbing, e.g. `echo **/*.txt`
2424
for option in autocd globstar; do
25-
shopt -s "$option" 2> /dev/null;
25+
shopt -s "$option" 2> /dev/null;
2626
done;
2727

2828
# Add tab completion for many Bash commands
2929
if which brew > /dev/null && [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then
30-
source "$(brew --prefix)/share/bash-completion/bash_completion";
30+
source "$(brew --prefix)/share/bash-completion/bash_completion";
3131
elif [ -f /etc/bash_completion ]; then
32-
source /etc/bash_completion;
32+
source /etc/bash_completion;
3333
fi;
3434

3535
# Enable tab completion for `g` by marking it as an alias for `git`
3636
if type _git &> /dev/null && [ -f /usr/local/etc/bash_completion.d/git-completion.bash ]; then
37-
complete -o default -o nospace -F _git g;
37+
complete -o default -o nospace -F _git g;
3838
fi;
3939

4040
# Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards

0 commit comments

Comments
 (0)