add some bash shell options

This commit is contained in:
frosty 2024-07-24 04:13:14 -04:00
parent bf7c0f0031
commit 86651095bb

View file

@ -3,6 +3,14 @@ case $- in
*) return ;; *) return ;;
esac esac
# Shell options
shopt -s dotglob
shopt -s nocaseglob
shopt -s autocd
shopt -s cdspell
shopt -s histappend
shopt -s histverify
# Default options # Default options
alias ls='ls --color=auto -AF' alias ls='ls --color=auto -AF'
alias grep='grep --color=auto' alias grep='grep --color=auto'