Skip to content

Commit

Permalink
prezto: be caseSensitive by default
Browse files Browse the repository at this point in the history
See nix-community#2255.

This causes a really noticeable slowdown that is quite hard to track
down!
  • Loading branch information
michaelpj authored and rycee committed Mar 15, 2024
1 parent c781b28 commit 206f457
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/programs/zsh/prezto.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ let

caseSensitive = mkOption {
type = types.nullOr types.bool;
default = null;
# See <https://github.com/nix-community/home-manager/issues/2255>.
default = true;
example = true;
description =
"Set case-sensitivity for completion, history lookup, etc.";
Expand Down

0 comments on commit 206f457

Please sign in to comment.