From 206f457fffdb9a73596a4cb2211a471bd305243d Mon Sep 17 00:00:00 2001 From: Michael Peyton Jones Date: Sun, 26 Nov 2023 15:45:04 +0000 Subject: [PATCH] prezto: be caseSensitive by default See https://github.com/nix-community/home-manager/issues/2255. This causes a really noticeable slowdown that is quite hard to track down! --- modules/programs/zsh/prezto.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/programs/zsh/prezto.nix b/modules/programs/zsh/prezto.nix index 1aa3af1e..9a94f238 100644 --- a/modules/programs/zsh/prezto.nix +++ b/modules/programs/zsh/prezto.nix @@ -16,7 +16,8 @@ let caseSensitive = mkOption { type = types.nullOr types.bool; - default = null; + # See . + default = true; example = true; description = "Set case-sensitivity for completion, history lookup, etc.";