1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00

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!
This commit is contained in:
Michael Peyton Jones 2023-11-26 15:45:04 +00:00 committed by Mikilio
parent 8b84e081ed
commit 11e7d8b365
No known key found for this signature in database
GPG Key ID: 5B2F1A890CF33F3F

View File

@ -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.";