Files
omarchy/default/bash/shell

13 lines
275 B
Plaintext
Raw Permalink Normal View History

2025-06-01 11:56:03 +02:00
# History control
shopt -s histappend
HISTCONTROL=ignoreboth
HISTSIZE=32768
HISTFILESIZE="${HISTSIZE}"
# Autocompletion
# source /usr/share/bash-completion/bash_completion
# Set complete path
2025-06-09 11:59:21 +02:00
export PATH="./bin:$HOME/.local/bin:$HOME/.local/share/omarchy/bin:$PATH"
2025-06-01 11:56:03 +02:00
set +h