mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 12:37:46 +00:00
* Create ~/Work with ./bin in the path for contained projects * Split out the mise work setup as its own configurator * Fixup the migration to reuse config logic --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
15 lines
335 B
Plaintext
15 lines
335 B
Plaintext
# History control
|
|
shopt -s histappend
|
|
HISTCONTROL=ignoreboth
|
|
HISTSIZE=32768
|
|
HISTFILESIZE="${HISTSIZE}"
|
|
|
|
# Autocompletion
|
|
if [[ ! -v BASH_COMPLETION_VERSINFO && -f /usr/share/bash-completion/bash_completion ]]; then
|
|
source /usr/share/bash-completion/bash_completion
|
|
fi
|
|
|
|
# Set complete path
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
set +h
|