nix/modules/home-manager/broot.nix

18 lines
290 B
Nix

{...}: {
programs.broot = {
enable = true;
enableFishIntegration = true;
settings = {
modal = false; # vim mode?
verbs = [
{
invocation = "edit";
shortcut = "e";
execution = "$EDITOR {file}";
}
];
};
};
}