13 lines
354 B
Plaintext
13 lines
354 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:$HOME/.local/share/omakub/bin:$HOME/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
|
||
|
set +h
|