mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
34 lines
951 B
Nix
34 lines
951 B
Nix
{ lib, config, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "lir";
|
|
packPathName = "lir.nvim";
|
|
package = "lir-nvim";
|
|
|
|
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.
|
|
'';
|
|
};
|
|
};
|
|
}
|