mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
f8398339a3
When enabled this will extend user's `$HOME/.zshrc` with sourcing of fzf's completion and key-bindings integration libraries.
91 lines
2.2 KiB
Nix
91 lines
2.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.fzf;
|
|
|
|
in
|
|
|
|
{
|
|
options.programs.fzf = {
|
|
enable = mkEnableOption "fzf - a command-line fuzzy finder";
|
|
|
|
defaultOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
example = [ "--height 40%" "--border" ];
|
|
description = ''
|
|
Extra command line options given to fzf by default.
|
|
'';
|
|
};
|
|
|
|
fileWidgetOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
example = [ "--preview 'head {}'" ];
|
|
description = ''
|
|
Command line options for the CTRL-T keybinding.
|
|
'';
|
|
};
|
|
|
|
changeDirWidgetOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
example = [ "--preview 'tree -C {} | head -200'" ];
|
|
description = ''
|
|
Command line options for the ALT-C keybinding.
|
|
'';
|
|
};
|
|
|
|
historyWidgetOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
example = [ "--sort" "--exact" ];
|
|
description = ''
|
|
Command line options for the CTRL-R keybinding.
|
|
'';
|
|
};
|
|
|
|
enableBashIntegration = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to enable Bash integration.
|
|
'';
|
|
};
|
|
|
|
enableZshIntegration = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to enable Zsh integration.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ pkgs.fzf ];
|
|
|
|
home.sessionVariables =
|
|
mapAttrs (n: v: toString v) (
|
|
filterAttrs (n: v: v != []) {
|
|
FZF_ALT_C_OPTS = cfg.changeDirWidgetOptions;
|
|
FZF_CTRL_R_OPTS = cfg.historyWidgetOptions;
|
|
FZF_CTRL_T_OPTS = cfg.fileWidgetOptions;
|
|
FZF_DEFAULT_OPTS = cfg.defaultOptions;
|
|
}
|
|
);
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
|
. ${pkgs.fzf}/share/fzf/completion.bash
|
|
. ${pkgs.fzf}/share/fzf/key-bindings.bash
|
|
'';
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
|
. ${pkgs.fzf}/share/fzf/completion.zsh
|
|
. ${pkgs.fzf}/share/fzf/key-bindings.zsh
|
|
'';
|
|
};
|
|
}
|