1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-23 11:39:46 +01:00

mcfly: add option to enable fuzzy search

McFly 0.5.1 added support for fuzzy searching.
This commit is contained in:
Mario Rodas 2020-12-16 04:20:00 +00:00 committed by Robert Helgesson
parent cb136f37c7
commit 2901044520
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -27,6 +27,14 @@ in {
'';
};
enableFuzzySearch = mkOption {
default = false;
type = types.bool;
description = ''
Whether to enable fuzzy searching.
'';
};
enableBashIntegration = mkOption {
default = true;
type = types.bool;
@ -75,5 +83,7 @@ in {
}
(mkIf cfg.enableLightTheme { home.sessionVariables.MCFLY_LIGHT = "TRUE"; })
(mkIf cfg.enableFuzzySearch { home.sessionVariables.MCFLY_FUZZY = "TRUE"; })
]);
}