nixpkgs/nixos/modules/programs/fzf.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1 KiB
Nix
Raw Normal View History

2023-04-08 20:59:58 +00:00
{ pkgs, config, lib, ... }:
2022-11-11 20:08:36 +00:00
with lib;
let
cfg = config.programs.fzf;
2023-04-08 20:59:58 +00:00
in
{
2022-11-11 20:08:36 +00:00
options = {
programs.fzf = {
2022-12-03 15:15:00 +00:00
fuzzyCompletion = mkEnableOption (mdDoc "fuzzy completion with fzf");
keybindings = mkEnableOption (mdDoc "fzf keybindings");
2022-11-11 20:08:36 +00:00
};
};
config = {
environment.systemPackages = optional (cfg.keybindings || cfg.fuzzyCompletion) pkgs.fzf;
2023-04-08 20:59:58 +00:00
2022-11-11 20:08:36 +00:00
programs.bash.interactiveShellInit = optionalString cfg.fuzzyCompletion ''
source ${pkgs.fzf}/share/fzf/completion.bash
'' + optionalString cfg.keybindings ''
source ${pkgs.fzf}/share/fzf/key-bindings.bash
'';
2023-04-08 20:59:58 +00:00
programs.zsh.interactiveShellInit = optionalString (!config.programs.zsh.ohMyZsh.enable)
(optionalString cfg.fuzzyCompletion ''
source ${pkgs.fzf}/share/fzf/completion.zsh
'' + optionalString cfg.keybindings ''
source ${pkgs.fzf}/share/fzf/key-bindings.zsh
'');
programs.zsh.ohMyZsh.plugins = lib.mkIf (cfg.keybindings || cfg.fuzzyCompletion) [ "fzf" ];
2022-11-11 20:08:36 +00:00
};
meta.maintainers = with maintainers; [ laalsaas ];
}