mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 03:20:08 +02:00
49 lines
1,017 B
Nix
49 lines
1,017 B
Nix
{
|
|
empty = {
|
|
plugins.lir.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.lir = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
show_hidden_files = false;
|
|
ignore = [ ];
|
|
devicons = {
|
|
enable = false;
|
|
highlight_dirname = false;
|
|
};
|
|
hide_cursor = false;
|
|
on_init.__raw = "function() end";
|
|
mappings = { };
|
|
float = {
|
|
winblend = 0;
|
|
curdir_window = {
|
|
enable = false;
|
|
highlight_dirname = false;
|
|
};
|
|
};
|
|
get_filters = null;
|
|
};
|
|
};
|
|
};
|
|
|
|
example = {
|
|
plugins.lir = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
show_hidden_files = true;
|
|
devicons.enable = false;
|
|
mappings = {
|
|
"<CR>".__raw = "require'lir.actions'.edit";
|
|
"-".__raw = "require'lir.actions'.up";
|
|
"<ESC>".__raw = "require'lir.actions'.quit";
|
|
"@".__raw = "require'lir.actions'.cd";
|
|
};
|
|
hide_cursor = true;
|
|
};
|
|
};
|
|
};
|
|
}
|