plugins/lir: init

This commit is contained in:
Gaetan Lepage 2025-01-11 11:09:20 +01:00 committed by nix-infra-bot
parent 2fc2132a78
commit 8db6c51762
3 changed files with 207 additions and 0 deletions

View file

@ -0,0 +1,49 @@
{
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;
};
};
};
}