flake/nixos/nvim/plugins/oil.nix
2025-02-04 08:28:09 -06:00

23 lines
389 B
Nix

{
programs.nixvim = {
plugins = {
oil = {
enable = true;
settings = {
default_file_explorer = false;
};
};
};
keymaps = [
{
mode = "n";
key = "<leader>o";
action = "<CMD>Oil --float<CR>";
options = {
desc = "Manage Files";
silent = true;
};
}
];
};
}