1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/plugins/by-name/lir/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

34 lines
976 B
Nix

{ lib, config, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "lir";
package = "lir-nvim";
description = "A simple file explorer for Neovim.";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
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;
};
extraConfig = cfg: {
warnings = lib.nixvim.mkWarnings "plugins.lir" {
when =
(cfg.settings ? devicons.enable)
&& (cfg.settings.devicons.enable == true)
&& (!config.plugins.web-devicons.enable);
message = ''
You have enabled `settings.devicons.enable` but `plugins.web-devicons.enable` is `false`.
Consider enabling the plugin for proper devicons support.
'';
};
};
}