nix-config/modules/nixvim/oil.nix
Oliver Davies d28cc18342
All checks were successful
/ check (push) Successful in 40s
Re-add oil.nvim
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-11-06 21:56:15 +00:00

24 lines
374 B
Nix

{
flake.modules.nixvim.custom = {
plugins.oil = {
enable = true;
settings = {
delete_to_trash = true;
keymaps."-" = "actions.parent";
skip_confirm_for_simple_edits = true;
view_options.show_hidden = true;
};
};
keymaps = [
{
action = "<cmd>Oil<CR>";
key = "-";
}
];
};
}