nix-community.nixvim/plugins/by-name/firenvim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.3 KiB
Nix
Raw Normal View History

2024-08-04 10:36:55 +02:00
{
lib,
config,
options,
2024-08-04 10:36:55 +02:00
...
}:
let
2024-09-27 08:07:20 +01:00
inherit (lib) types;
2024-08-04 10:36:55 +02:00
inherit (lib.nixvim) defaultNullOpts;
in
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkNeovimPlugin {
2024-08-04 10:36:55 +02:00
name = "firenvim";
maintainers = with lib.maintainers; [ GaetanLepage ];
settingsOptions = {
globalSettings = defaultNullOpts.mkAttrsOf' {
type = types.anything;
pluginDefault = { };
example = {
alt = "all";
};
description = "Default settings that apply to all URLs.";
};
localSettings = defaultNullOpts.mkAttrsOf' {
type = with types; attrsOf anything;
pluginDefault = { };
example = {
".*" = {
cmdline = "neovim";
content = "text";
priority = 0;
selector = "textarea";
takeover = "always";
};
"https?://[^/]+\\.co\\.uk/" = {
takeover = "never";
priority = 1;
};
};
description = ''
Map regular expressions that are tested against the full URL to settings that are used for
all URLs matched by that pattern.
When multiple patterns match a URL, the pattern with the highest "priority" value is used.
Note: regular expressions use the [JavaScript flavor](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions).
'';
};
};
settingsExample = {
globalSettings.alt = "all";
localSettings = {
".*" = {
cmdline = "neovim";
content = "text";
priority = 0;
selector = "textarea";
takeover = "always";
};
"https?://[^/]+\\.co\\.uk/" = {
takeover = "never";
priority = 1;
};
};
};
settingsDescription = ''
Options fed to the `vim.g.firenvim_config` table.
'';
callSetup = false;
extraConfig = cfg: opts: {
warnings = lib.nixvim.mkWarnings "plugins.firenvim" {
when =
config.performance.combinePlugins.enable
&& !(lib.elem "firenvim" config.performance.combinePlugins.standalonePlugins);
message = ''
Using `performance.combinePlugins` breaks `firenvim`.
Add this plugin to `performance.combinePlugins.standalonePlugins` to prevent any issue.
'';
};
globals.firenvim_config = lib.modules.mkAliasAndWrapDefsWithPriority lib.id opts.settings;
};
2024-08-04 10:36:55 +02:00
}