added stuff
This commit is contained in:
parent
937f28770d
commit
236b8c2a6b
907 changed files with 70990 additions and 0 deletions
14
nyx/homes/notashelf/programs/terminal/shell/zsh/rc/unset.zsh
Normal file
14
nyx/homes/notashelf/programs/terminal/shell/zsh/rc/unset.zsh
Normal 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 isn’t there
|
||||
"SHARE_HISTORY" # read the documentation for more details
|
||||
)
|
||||
|
||||
for option in "${options[@]}"; do
|
||||
unsetopt $option
|
||||
done
|
||||
}
|
||||
|
||||
unset_zsh_options
|
Loading…
Add table
Add a link
Reference in a new issue