28 lines
526 B
Nix
28 lines
526 B
Nix
{
|
|
programs.nixvim.plugins.oil = {
|
|
enable = true;
|
|
settings = {
|
|
keymaps = {
|
|
"<C-r>" = "actions.refresh";
|
|
"<leader>qq" = "actions.close";
|
|
};
|
|
skip_confirm_for_simple_edits = true;
|
|
constrain_cursor = "editable";
|
|
default_file_explorer = true;
|
|
view_options = {
|
|
show_hidden = true;
|
|
};
|
|
win_options = {
|
|
concealcursor = "ncv";
|
|
conceallevel = 3;
|
|
cursorcolumn = false;
|
|
foldcolumn = "0";
|
|
list = false;
|
|
signcolumn = "no";
|
|
spell = false;
|
|
wrap = false;
|
|
};
|
|
};
|
|
};
|
|
}
|