added stuff

This commit is contained in:
Charlie Root 2024-04-09 23:11:33 +02:00
commit 9d0ebdfbd0
907 changed files with 70990 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# Define a function to unset Zsh options
function unset_zsh_options() {
local options=(
"CORRECT_ALL" # try to correct the spelling of all arguments in a line.
"HIST_BEEP" # beep in ZLE when a widget attempts to access a history entry which isnt there
"SHARE_HISTORY" # read the documentation for more details
)
for option in "${options[@]}"; do
unsetopt $option
done
}
unset_zsh_options