From ed5f702db8ec78964e41e838defe54380ef73864 Mon Sep 17 00:00:00 2001 From: Bo Jeanes Date: Fri, 2 Aug 2024 16:46:57 +1000 Subject: [PATCH] Configure macOS scrollbars sanely --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flake.nix b/flake.nix index 4001dca..61ac810 100644 --- a/flake.nix +++ b/flake.nix @@ -225,6 +225,9 @@ NSGlobalDomain.NSAutomaticSpellingCorrectionEnabled = false; NSGlobalDomain.NSAutomaticDashSubstitutionEnabled = true; + # Jump to the spot that’s clicked on the scroll bar + NSGlobalDomain.AppleScrollerPagingBehavior = true; + # use expanded save panel by default NSGlobalDomain.NSNavPanelExpandedStateForSaveMode = true; NSGlobalDomain.NSNavPanelExpandedStateForSaveMode2 = true;