blob: 5d15aa269ceb05ee4806b862391c35514a7b37da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[ -n "$ENV" ] && . "$ENV" || [ -e ~/.env ] && . ~/.env
# Prompt for Bash
export PS1="\[\033[1;33m\]\u@\h:\W\$ \[\033[0m\]"
# Verify before running history command
shopt -s histverify
# See Bash man
_completion_loader()
{
# Completion files on Arch
. "/usr/share/bash-completion/completions/$1" >/dev/null 2>&1 && return 124
}
complete -D -F _completion_loader -o bashdefault -o default
# Load if available
[ -f ~/.fzf.bash ] && . ~/.fzf.bash
[ -f ~/.config/broot/launcher/bash/br ] && . ~/.config/broot/launcher/bash/br
|