mirror of
https://github.com/aljazceru/omakub.git
synced 2025-12-17 20:44:21 +01:00
15 lines
326 B
Plaintext
15 lines
326 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:$PATH"
|
|
set +h
|
|
|
|
export OMAKUB_PATH="/home/$USER/.local/share/omakub"
|