mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-09 04:20:29 +00:00
14 lines
319 B
Plaintext
14 lines
319 B
Plaintext
# History control
|
|
shopt -s histappend
|
|
HISTCONTROL=ignoreboth
|
|
HISTSIZE=32768
|
|
HISTFILESIZE="${HISTSIZE}"
|
|
|
|
# Autocompletion
|
|
if [[ ! -v BASH_COMPLETION_VERSINFO && -f /usr/share/bash-completion/bash_completion ]]; then
|
|
source /usr/share/bash-completion/bash_completion
|
|
fi
|
|
|
|
# Ensure command hashing is off for mise
|
|
set +h
|