mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
27 lines
891 B
Nix
27 lines
891 B
Nix
{pkgs, config, lib, ...}:
|
|
with lib;
|
|
let
|
|
cfg = config.programs.fzf;
|
|
in {
|
|
options = {
|
|
programs.fzf = {
|
|
fuzzyCompletion = mkEnableOption (mdDoc "fuzzy completion with fzf");
|
|
keybindings = mkEnableOption (mdDoc "fzf keybindings");
|
|
};
|
|
};
|
|
config = {
|
|
environment.systemPackages = optional (cfg.keybindings || cfg.fuzzyCompletion) pkgs.fzf;
|
|
programs.bash.interactiveShellInit = optionalString cfg.fuzzyCompletion ''
|
|
source ${pkgs.fzf}/share/fzf/completion.bash
|
|
'' + optionalString cfg.keybindings ''
|
|
source ${pkgs.fzf}/share/fzf/key-bindings.bash
|
|
'';
|
|
|
|
programs.zsh.interactiveShellInit = optionalString cfg.fuzzyCompletion ''
|
|
source ${pkgs.fzf}/share/fzf/completion.zsh
|
|
'' + optionalString cfg.keybindings ''
|
|
source ${pkgs.fzf}/share/fzf/key-bindings.zsh
|
|
'';
|
|
};
|
|
meta.maintainers = with maintainers; [ laalsaas ];
|
|
}
|