Files
nvim/config/modules/plugins/oil.nix

29 lines
398 B
Nix
Raw Normal View History

2025-10-23 19:50:10 +03:00
{
plugins.oil = {
enable = true;
settings = {
win_options = {
signcolumn = "yes:2";
};
};
};
plugins.oil-git-status = {
enable = true;
settings = {
show_ignored = true;
};
};
2025-10-23 19:50:10 +03:00
keymaps = [
{
mode = "n";
action = "<cmd>Oil<CR>";
key = "<leader>o";
options = {
desc = "Open [O]il";
};
}
];
}