mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
13 lines
244 B
Plaintext
13 lines
244 B
Plaintext
# History control
|
|
shopt -s histappend
|
|
HISTCONTROL=ignoreboth
|
|
HISTSIZE=32768
|
|
HISTFILESIZE="${HISTSIZE}"
|
|
|
|
# Autocompletion
|
|
# source /usr/share/bash-completion/bash_completion
|
|
|
|
# Set complete path
|
|
export PATH="./bin:$HOME/.local/bin:$PATH"
|
|
set +h
|