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
c781b28add
commit
206f457fff
|
@ -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