Configure text substitutions in macOS

Mostly disabling hehe
main
Bo Jeanes 2024-07-29 14:09:59 +10:00
parent e3e220ddc8
commit 7488db178d
No known key found for this signature in database
1 changed files with 7 additions and 0 deletions

View File

@ -205,6 +205,13 @@
NSGlobalDomain.InitialKeyRepeat = 15;
NSGlobalDomain.KeyRepeat = 5;
# Disable certain text substitutions
NSGlobalDomain.NSAutomaticQuoteSubstitutionEnabled = false; # smart quotes
NSGlobalDomain.NSAutomaticPeriodSubstitutionEnabled = false; # period after double-space
NSGlobalDomain.NSAutomaticCapitalizationEnabled = false;
NSGlobalDomain.NSAutomaticSpellingCorrectionEnabled = false;
NSGlobalDomain.NSAutomaticDashSubstitutionEnabled = true;
# use expanded save panel by default
NSGlobalDomain.NSNavPanelExpandedStateForSaveMode = true;
NSGlobalDomain.NSNavPanelExpandedStateForSaveMode2 = true;