nix-config/modules/home-manager/coding/neovim/config/plugins/oil.nix
Oliver Davies 6a87e455bd
All checks were successful
/ check (push) Successful in 1m39s
nix fmt
2025-07-10 22:55:59 +01:00

23 lines
362 B
Nix

{ config, lib, ... }:
{
plugins.oil = {
enable = true;
settings = {
delete_to_trash = true;
keymaps."-" = "actions.parent";
skip_confirm_for_simple_edits = true;
view_options.show_hidden = true;
};
};
keymaps = lib.mkIf config.plugins.oil.enable [
{
action = "<cmd>Oil<CR>";
key = "-";
}
];
}