Skip to content

Commit

Permalink
Enable caseSensitive by default in prezto module
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 committed Nov 26, 2023
1 parent a462e73 commit 775d362
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;
# Because of 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 775d362

Please sign in to comment.