Skip to content

Commit

Permalink
disable setting keyrepeats
Browse files Browse the repository at this point in the history
  • Loading branch information
maman committed Feb 9, 2024
1 parent fe6c848 commit 73bd88d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions users/maman/darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
NSGlobalDomain.ApplePressAndHoldEnabled = false;
NSGlobalDomain.AppleScrollerPagingBehavior = true;
NSGlobalDomain."com.apple.keyboard.fnState" = true;
NSGlobalDomain.InitialKeyRepeat = 1;
NSGlobalDomain.KeyRepeat = 1;
# NSGlobalDomain.InitialKeyRepeat = 10;
# NSGlobalDomain.KeyRepeat = 10;
NSGlobalDomain.NSUseAnimatedFocusRing = false;
NSGlobalDomain.NSAutomaticCapitalizationEnabled = false;
NSGlobalDomain.NSAutomaticDashSubstitutionEnabled = false;
Expand Down
6 changes: 5 additions & 1 deletion users/maman/home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ in {
dquote = str: "\"" + str + "\"";
makeBinPathList = map (path: path + "/bin");
in ''
fish_add_path --move --prepend --path ${lib.concatMapStringsSep " " dquote (makeBinPathList osConfig.environment.profiles)}
fish_add_path --move --prepend --path ${lib.concatMapStringsSep " " dquote (makeBinPathList osConfig.environment.profiles)}
set fish_user_paths $fish_user_paths
'';
};
Expand Down Expand Up @@ -176,6 +176,7 @@ in {
enableFishIntegration = true;
globalConfig = {
tools = {
adb = "latest";
node = "lts";
python = "3.11.7";
github-cli = "latest";
Expand All @@ -189,6 +190,9 @@ in {
flyctl = "0.1.147";
"npm:@withgraphite/graphite-cli" = "stable";
};
plugins = {
adb = "https://github.com/vic/asdf-link.git";
};
settings = {
experimental = true;
};
Expand Down

0 comments on commit 73bd88d

Please sign in to comment.