adds: option to ingnore commands that start with a space to be ignored in shell history

This commit is contained in:
2024-03-17 14:14:16 -04:00
parent 9a05bd20d8
commit 17bc6ef41b
2 changed files with 2 additions and 0 deletions

View File

@@ -39,5 +39,6 @@ yabai -m rule --add app="^System Settings$" manage=off
yabai -m rule --add app="^Archive Utility$" manage=off
yabai -m rule --add app="^Logi Options$" manage=off
yabai -m rule --add app="^Music$" manage=off
yabai -m rule --add app="^pwSafe$" manage=off
echo "yabai configuration loaded.."

View File

@@ -81,6 +81,7 @@ setopt hist_expire_dups_first # expire duplicates first
setopt hist_ignore_dups # do not store duplicates
setopt hist_find_no_dups # ignore duplicates when searching
setopt hist_reduce_blanks # do not store blank lines.
setopt histignorespace # do not store commands that start with a space in history
export HISTSIZE=5000
export HISTFILESIZE=10000