mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
15 lines
372 B
Plaintext
15 lines
372 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
|
|
|
|
# Set complete path
|
|
export PATH="./bin:$HOME/.local/bin:$HOME/.local/share/omarchy/bin:$PATH"
|
|
set +h
|