nix-community.nixvim/tests/test-sources/plugins/utils/oil.nix

209 lines
4.8 KiB
Nix
Raw Normal View History

2023-05-26 15:55:46 +02:00
{
empty = {
plugins.oil.enable = true;
};
short-example = {
2023-05-26 15:55:46 +02:00
plugins.oil = {
enable = true;
settings = {
2024-05-05 19:39:35 +02:00
columns = [ "icon" ];
view_options.show_hidden = false;
win_options = {
wrap = false;
signcolumn = "no";
cursorcolumn = false;
foldcolumn = "0";
spell = false;
list = false;
conceallevel = 3;
concealcursor = "ncv";
};
keymaps = {
"<C-c>" = false;
"<leader>qq" = "actions.close";
"<C-l>" = false;
"<C-r>" = "actions.refresh";
"y." = "actions.copy_entry_path";
2023-05-26 15:55:46 +02:00
};
skip_confirm_for_simple_edits = true;
};
};
};
example = {
plugins.oil = {
enable = true;
settings = {
default_file_explorer = true;
columns = [
{
__unkeyed = "type";
highlight = "Foo";
2024-05-05 19:39:35 +02:00
icons = { };
}
{
__unkeyed = "icon";
highlight = "Foo";
defaultFile = "bar";
directory = "dir";
}
{
__unkeyed = "size";
highlight = "Foo";
}
{
__unkeyed = "permissions";
highlight = "Foo";
}
{
__unkeyed = "ctime";
highlight = "Foo";
format = "format";
}
{
__unkeyed = "mtime";
highlight = "Foo";
format = "format";
}
{
__unkeyed = "atime";
highlight = "Foo";
format = "format";
}
{
__unkeyed = "birthtime";
highlight = "Foo";
format = "format";
}
];
buf_options = {
buflisted = false;
bufhidden = "hide";
2023-05-26 15:55:46 +02:00
};
win_options = {
wrap = false;
signcolumn = "no";
cursorcolumn = false;
foldcolumn = "0";
spell = false;
list = false;
conceallevel = 3;
concealcursor = "nvic";
2023-05-26 15:55:46 +02:00
};
delete_to_trash = false;
skip_confirm_for_simple_edits = false;
prompt_save_on_select_new_entry = true;
cleanup_delay_ms = 2000;
lsp_file_method = {
timeout_ms = 1000;
autosave_changes = true;
2023-05-26 15:55:46 +02:00
};
constrain_cursor = "editable";
experimental_watch_for_changes = false;
keymaps = {
"g?" = "actions.show_help";
"<CR>" = "actions.select";
"<C-s>" = "actions.select_vsplit";
"<C-h>" = "actions.select_split";
"<C-t>" = "actions.select_tab";
"<C-p>" = "actions.preview";
"<C-c>" = "actions.close";
"<C-l>" = "actions.refresh";
"-" = "actions.parent";
"_" = "actions.open_cwd";
"`" = "actions.cd";
"~" = "actions.tcd";
"g." = "actions.toggle_hidden";
2023-05-26 15:55:46 +02:00
};
keymaps_help = {
border = "rounded";
2023-05-26 15:55:46 +02:00
};
use_default_keymaps = true;
view_options = {
show_hidden = false;
is_hidden_file = ''
function(name, bufnr)
return vim.startswith(name, ".")
end
'';
is_always_hidden = ''
function(name, bufnr)
return false
end
'';
natural_order = true;
sort = [
2024-05-05 19:39:35 +02:00
[
"type"
"asc"
]
[
"name"
"asc"
]
];
2023-05-26 15:55:46 +02:00
};
float = {
padding = 2;
max_width = 0;
max_height = 0;
border = "rounded";
win_options = {
winblend = 0;
};
override = ''
function(conf)
return conf
end
'';
2023-05-26 15:55:46 +02:00
};
preview = {
max_width = 0.9;
2024-05-05 19:39:35 +02:00
min_width = [
40
0.4
];
width = null;
max_height = 0.9;
2024-05-05 19:39:35 +02:00
min_height = [
5
0.1
];
height = null;
border = "rounded";
win_options = {
winblend = 0;
};
update_on_cursor_moved = true;
2023-05-26 15:55:46 +02:00
};
progress = {
max_width = 0.9;
2024-05-05 19:39:35 +02:00
min_width = [
40
0.4
];
width = null;
max_height = 0.9;
2024-05-05 19:39:35 +02:00
min_height = [
5
0.1
];
height = null;
border = "rounded";
minimized_border = "none";
win_options = {
winblend = 0;
};
2023-05-26 15:55:46 +02:00
};
ssh = {
border = "rounded";
2023-05-26 15:55:46 +02:00
};
};
};
};
}