mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02: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
|