mirror of
https://github.com/nix-community/home-manager
synced 2024-11-13 06:39:44 +01: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:
parent
8b84e081ed
commit
11e7d8b365
1 changed files with 2 additions and 1 deletions
|
@ -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.";
|
||||
|
|
Loading…
Reference in a new issue