flake/nixos/nvim/plugins/oil.nix

24 lines
389 B
Nix
Raw Normal View History

2025-02-04 08:26:49 -06:00
{
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;
};
}
];
};
}