2.home-manager/tests/modules/programs/fzf/default.nix
Austin Horstman f15a4bf065 fzf: add per-shell widget overrides
Allow each shell integration to override widget commands and options before fzf is sourced, so users can disable or tune bindings only where needed.
2026-07-02 15:28:15 -05:00

15 lines
701 B
Nix

{
fzf-bash-widget-overrides = ./bash-widget-overrides.nix;
fzf-disabled = ./disabled.nix;
fzf-options = ./all-options.nix;
fzf-bash-integration = ./bash-integration.nix;
fzf-zsh-widget-overrides = ./zsh-widget-overrides.nix;
fzf-zsh-integration = ./zsh-integration.nix;
fzf-fish-widget-overrides = ./fish-widget-overrides.nix;
fzf-fish-integration = ./fish-integration.nix;
fzf-history-command-version-warning = ./history-command-version-warning.nix;
fzf-nushell-integration = ./nushell-integration.nix;
fzf-nushell-history-command = ./nushell-history-command.nix;
fzf-nushell-widget-overrides = ./nushell-widget-overrides.nix;
fzf-renamed-options = ./renamed-options.nix;
}