nix-config/modules/basic-tools/fzf.nix

11 lines
274 B
Nix
Raw Normal View History

2023-01-22 23:07:29 +01:00
{ lib, config, ... }: {
# integrate fzf into shell, >23.05 only
programs =
if (lib.toInt (lib.elemAt (lib.splitVersion config.system.nixos.release) 0) >= 23) then {
fzf = {
keybindings = true;
fuzzyCompletion = true;
};
} else { };
}