From 020d666957200fa9b13fc788c7a29dd02d0aef4b Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 6 Sep 2017 22:40:04 +0200 Subject: [PATCH] lnl: disable auto capitalization and period substitution --- modules/examples/lnl.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/examples/lnl.nix b/modules/examples/lnl.nix index cf147129..48286aa0 100644 --- a/modules/examples/lnl.nix +++ b/modules/examples/lnl.nix @@ -4,7 +4,9 @@ system.defaults.NSGlobalDomain.ApplePressAndHoldEnabled = false; system.defaults.NSGlobalDomain.InitialKeyRepeat = 10; system.defaults.NSGlobalDomain.KeyRepeat = 1; + system.defaults.NSGlobalDomain.NSAutomaticCapitalizationEnabled = false; system.defaults.NSGlobalDomain.NSAutomaticDashSubstitutionEnabled = false; + system.defaults.NSGlobalDomain.NSAutomaticPeriodSubstitutionEnabled = false; system.defaults.NSGlobalDomain.NSAutomaticQuoteSubstitutionEnabled = false; system.defaults.NSGlobalDomain.NSAutomaticSpellingCorrectionEnabled = false; system.defaults.NSGlobalDomain.NSNavPanelExpandedStateForSaveMode = true;