feat(home): Fzf
This commit is contained in:
parent
0c1105b2da
commit
45ce61172e
3 changed files with 69 additions and 44 deletions
|
@ -23,6 +23,7 @@ in
|
||||||
eza = enabled;
|
eza = enabled;
|
||||||
figlet = enabled;
|
figlet = enabled;
|
||||||
fish = enabled;
|
fish = enabled;
|
||||||
|
fzf = enabled;
|
||||||
journalctl = enabled;
|
journalctl = enabled;
|
||||||
neo = enabled;
|
neo = enabled;
|
||||||
systemctl = enabled;
|
systemctl = enabled;
|
||||||
|
|
68
modules/home/programs/fzf/default.nix
Normal file
68
modules/home/programs/fzf/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
namespace,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf enabled;
|
||||||
|
inherit (lib.${namespace}) mkEnableModule;
|
||||||
|
|
||||||
|
cfg = config.${namespace}.programs.fzf;
|
||||||
|
inherit (config.${namespace}) theme;
|
||||||
|
|
||||||
|
has-ripgrep = config.programs.ripgrep.enable;
|
||||||
|
has-fd = config.programs.fd.enable;
|
||||||
|
has-eza = config.programs.eza.enable;
|
||||||
|
has-bat = config.programs.bat.enable;
|
||||||
|
has-tmux = config.programs.tmux.enable;
|
||||||
|
has-delta = config.programs.git.delta.enable;
|
||||||
|
has-difft = config.programs.git.difftastic.enable;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = mkEnableModule "programs.fzf";
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
programs.fzf = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
"${theme.colors.base}" = enabled;
|
||||||
|
|
||||||
|
defaultOptions = [
|
||||||
|
"--margin=10%,5%"
|
||||||
|
"--border=sharp"
|
||||||
|
"--pointer= "
|
||||||
|
"--marker= "
|
||||||
|
"--prompt= "
|
||||||
|
"--preview-label-pos='bottom'"
|
||||||
|
"--preview-window='border-sharp'"
|
||||||
|
];
|
||||||
|
|
||||||
|
defaultCommand = lib.mkIf has-ripgrep "rg --files --hidden --glob \"!.git\"";
|
||||||
|
|
||||||
|
changeDirWidgetCommand = lib.mkIf has-fd "fd --type d";
|
||||||
|
changeDirWidgetOptions = lib.mkIf has-eza [
|
||||||
|
"--preview 'eza --all --color=always --sort=name --group-directories-first --level=3 {}'"
|
||||||
|
];
|
||||||
|
|
||||||
|
fileWidgetCommand = lib.mkIf has-fd "fd --type f";
|
||||||
|
fileWidgetOptions = lib.mkIf has-bat [
|
||||||
|
"--preview 'bat {}'"
|
||||||
|
];
|
||||||
|
|
||||||
|
tmux.enableShellIntegration = lib.mkIf has-tmux true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.sessionVariables =
|
||||||
|
if has-delta then
|
||||||
|
{
|
||||||
|
fzf_diff_highlighter = "delta --paging=never --features=arctic-fox";
|
||||||
|
}
|
||||||
|
else if has-difft then
|
||||||
|
{
|
||||||
|
fzf_diff_highlighter = "difft --color=always";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{ };
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,44 +0,0 @@
|
||||||
{ lib, config, ... }:
|
|
||||||
let
|
|
||||||
has-ripgrep = config.programs.ripgrep.enable;
|
|
||||||
has-fd = config.programs.fd.enable;
|
|
||||||
has-eza = config.programs.eza.enable;
|
|
||||||
has-bat = config.programs.bat.enable;
|
|
||||||
has-tmux = config.programs.tmux.enable;
|
|
||||||
has-delta = config.programs.git.delta.enable;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
programs.fzf = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
rose-pine.enable = true;
|
|
||||||
|
|
||||||
defaultOptions = [
|
|
||||||
"--margin=10%,5%"
|
|
||||||
"--border=sharp"
|
|
||||||
"--pointer= "
|
|
||||||
"--marker= "
|
|
||||||
"--prompt= "
|
|
||||||
"--preview-label-pos='bottom'"
|
|
||||||
"--preview-window='border-sharp'"
|
|
||||||
];
|
|
||||||
|
|
||||||
defaultCommand = lib.mkIf has-ripgrep "rg --files --hidden --glob \"!.git\"";
|
|
||||||
|
|
||||||
changeDirWidgetCommand = lib.mkIf has-fd "fd --type d";
|
|
||||||
changeDirWidgetOptions = lib.mkIf has-eza [
|
|
||||||
"--preview 'eza --all --color=always --sort=name --group-directories-first --level=3 {}'"
|
|
||||||
];
|
|
||||||
|
|
||||||
fileWidgetCommand = lib.mkIf has-fd "fd --type f";
|
|
||||||
fileWidgetOptions = lib.mkIf has-bat [
|
|
||||||
"--preview 'bat {}'"
|
|
||||||
];
|
|
||||||
|
|
||||||
tmux.enableShellIntegration = lib.mkIf has-tmux true;
|
|
||||||
};
|
|
||||||
|
|
||||||
home.sessionVariables = lib.mkIf has-delta {
|
|
||||||
fzf_diff_highlighter = "delta --paging=never --features=arctic-fox";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue