Add more options to bashrc

Tried to learn what these options are doing, and added some that I found useful.
This commit is contained in:
Daniel - 2020-08-22 16:39:44 +02:00
parent 7f12f001c0
commit 2bf8c6a932
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 8 additions and 0 deletions

8
bashrc
View File

@ -25,6 +25,14 @@ shopt -o -s noclobber
# Extended globbing
shopt -s extglob
shopt -s globstar
# cd to directory if an invalid command is the name of a directory
shopt -s autocd
# Fix typing errors
shopt -s cdspell
shopt -s dirspell
# Check the window size after each command and, if necessary,
# Update the values of LINES and COLUMNS.