-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbashrc
67 lines (53 loc) · 2.21 KB
/
bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Load the shell dotfiles, and then some:
for file in ~/.{bash_prompt,exports,functions}; do
[ -r "$file" ] && source "$file"
done
unset file
# Case-insensitive globbing (used in pathname expansion)
shopt -s nocaseglob
# Append to the Bash history file, rather than overwriting it
shopt -s histappend
# Autocorrect typos in path names when using `cd`
shopt -s cdspell
# Enable some Bash 4 features when possible:
# * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux`
# * Recursive globbing, e.g. `echo **/*.txt`
for option in autocd globstar; do
shopt -s "$option" 2>/dev/null
done
# Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards
[ -e ~/.ssh/config ] && complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2 | tr ' ' '\n')" scp sftp ssh
# Add tab completion for `defaults read|write NSGlobalDomain`
# You could just use `-g` instead, but I like being explicit
complete -W "NSGlobalDomain" defaults
# Setup homebrew
export PATH="/opt/homebrew/bin:$PATH"
eval "$(/opt/homebrew/bin/brew shellenv)"
# Add tab completion for `aws` if installed
type aws &>/dev/null && complete -C "$(which aws_completer)" aws
if type mise &>/dev/null; then
eval "$(mise activate bash)"
fi
if type starship &>/dev/null; then
eval "$(starship init bash)"
fi
# If possible, add tab completion for many more commands
brewery=$(brew --prefix)
[[ -s "$brewery/etc/bash_completion" ]] && source "$brewery/etc/bash_completion"
[[ -s "$brewery/etc/autojump.sh" ]] && source "$brewery/etc/autojump.sh"
[[ -s "$brewery/opt/fzf/shell/completion.bash" ]] && source "$brewery/opt/fzf/shell/completion.bash"
[[ -s "$brewery/opt/fzf/shell/key-bindings.bash" ]] && source "$brewery/opt/fzf/shell/key-bindings.bash"
# Set terminal title to something reasonable
__set_terminal_title() {
echo -ne "\033]0;${PWD} 〉$BASH_COMMAND\007"
}
trap '__set_terminal_title' DEBUG
# load aliases, this comes after we've fiddled with the PATH to make sure
# that we can properly check for commands when defining aliases
if [ -f ~/.aliases ]; then
source ~/.aliases
fi
# ~/.bashrc.local can be used for other settings you don’t want to commit.
if [ -f ~/.bashrc.local ]; then
source ~/.bashrc.local
fi