nix/modules/home-manager/broot.nix

18 lines
290 B
Nix
Raw Normal View History

{...}: {
2023-10-05 13:43:28 -05:00
programs.broot = {
enable = true;
enableFishIntegration = true;
settings = {
modal = false; # vim mode?
2023-10-05 13:43:28 -05:00
verbs = [
{
invocation = "edit";
shortcut = "e";
execution = "$EDITOR {file}";
}
];
};
};
}