22 lines
370 B
Nix
22 lines
370 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
plugins.oil.settings = {
|
|
view_options = {
|
|
show_hidden = false;
|
|
};
|
|
};
|
|
# add this keymaps only if oil plugin is enabled
|
|
keymaps = lib.mkIf config.plugins.oil.enable [
|
|
{
|
|
action = "<cmd>Oil<CR>";
|
|
key = "-";
|
|
options = {
|
|
silent = true;
|
|
# TODO what does silent do?
|
|
};
|
|
}
|
|
];
|
|
}
|