From 86651095bb4f59966af220486540babe340aead3 Mon Sep 17 00:00:00 2001 From: frosty Date: Wed, 24 Jul 2024 04:13:14 -0400 Subject: [PATCH] add some bash shell options --- .bashrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.bashrc b/.bashrc index 81d95ee..c373059 100644 --- a/.bashrc +++ b/.bashrc @@ -3,6 +3,14 @@ case $- in *) return ;; esac +# Shell options +shopt -s dotglob +shopt -s nocaseglob +shopt -s autocd +shopt -s cdspell +shopt -s histappend +shopt -s histverify + # Default options alias ls='ls --color=auto -AF' alias grep='grep --color=auto'