summaryrefslogtreecommitdiff
path: root/.bashrc
blob: b486d2c3b8e16fe2795c75ca60d163f58bdc918d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Bash configuration

# Set prompt.
PS1="\[\033[38;5;3m\][\u@\h \w]\[\033[0m\] \$ "

# History file configuration.
shopt -s histappend
HISTSIZE=100000
HISTFILESIZE=100000
HISTFILE="$HOME/.cache/bash/history"

# GPG.
export GPG_TTY="$(tty)"

# Load aliases.
if [ -f "$HOME/.config/aliasrc" ]; then
	source "$HOME/.config/aliasrc"
fi