Configure key repeat and disable press-and-hold for special chars

main
Bo Jeanes 2024-07-29 14:09:29 +10:00
parent 00c92b9b70
commit e3e220ddc8
No known key found for this signature in database
1 changed files with 6 additions and 0 deletions

View File

@ -199,6 +199,12 @@
finder.ShowPathbar = true;
finder.ShowStatusBar = true;
# Disable press-and-hold keyboard for alt characters; this messes with key repeat and I am already used to Option+key for special characters
NSGlobalDomain.ApplePressAndHoldEnabled = false;
NSGlobalDomain.InitialKeyRepeat = 15;
NSGlobalDomain.KeyRepeat = 5;
# use expanded save panel by default
NSGlobalDomain.NSNavPanelExpandedStateForSaveMode = true;
NSGlobalDomain.NSNavPanelExpandedStateForSaveMode2 = true;