neovim-flake/lib/types/plugins.nix

101 lines
2.4 KiB
Nix
Raw Permalink Normal View History

2024-04-08 02:28:49 +02:00
{
inputs,
lib,
...
}: let
inherit (lib.options) mkOption;
inherit (lib.attrsets) attrNames mapAttrs' filterAttrs nameValuePair;
inherit (lib.strings) hasPrefix removePrefix isString;
inherit (lib.types) submodule either package enum str lines attrsOf anything listOf nullOr;
# Get the names of all flake inputs that start with the given prefix.
2024-04-09 08:55:45 +02:00
fromInputs = {
inputs,
prefix,
}:
2024-04-08 02:28:49 +02:00
mapAttrs' (n: v: nameValuePair (removePrefix prefix n) {src = v;}) (filterAttrs (n: _: hasPrefix prefix n) inputs);
# Get the names of all flake inputs that start with the given prefix.
2024-04-09 08:55:45 +02:00
pluginInputNames = attrNames (fromInputs {
inherit inputs;
prefix = "plugin-";
});
2024-04-08 02:28:49 +02:00
2023-02-06 19:57:35 +01:00
# You can either use the name of the plugin or a package.
2024-04-08 02:28:49 +02:00
pluginType = nullOr (
either
package
2024-04-09 08:55:45 +02:00
(enum (pluginInputNames ++ ["nvim-treesitter" "flutter-tools-patched" "vim-repeat"]))
2024-04-08 02:28:49 +02:00
);
2024-04-08 02:28:49 +02:00
pluginsType = listOf pluginType;
2024-04-08 02:28:49 +02:00
extraPluginType = submodule {
options = {
package = mkOption {
type = pluginType;
description = "Plugin Package.";
};
2024-02-17 01:19:38 +01:00
2024-04-08 02:28:49 +02:00
after = mkOption {
type = listOf str;
default = [];
description = "Setup this plugin after the following ones.";
};
2024-02-17 01:19:38 +01:00
2024-04-08 02:28:49 +02:00
setup = mkOption {
type = lines;
default = "";
description = "Lua code to run during setup.";
example = "require('aerial').setup {}";
};
};
2024-04-08 02:28:49 +02:00
};
2023-02-06 19:57:35 +01:00
in {
2024-04-09 08:55:45 +02:00
inherit extraPluginType fromInputs;
2023-02-06 19:57:35 +01:00
pluginsOpt = {
description,
example,
2023-02-06 19:57:35 +01:00
default ? [],
}:
mkOption {
inherit example description default;
2023-02-06 19:57:35 +01:00
type = pluginsType;
};
2024-03-16 10:29:07 +01:00
luaInline = lib.mkOptionType {
name = "luaInline";
check = x: lib.nvim.lua.isLuaInline x;
2024-03-03 12:47:58 +01:00
};
2024-04-08 02:28:49 +02:00
/*
opts is a attrset of options, example:
```
mkPluginSetupOption "telescope" {
file_ignore_patterns = mkOption {
description = "...";
type = types.listOf types.str;
default = [];
};
layout_config.horizontal = mkOption {...};
}
```
*/
mkPluginSetupOption = pluginName: opts:
mkOption {
2024-04-20 14:24:00 +02:00
description = ''
Option table to pass into the setup function of ${pluginName}
2024-04-20 14:24:00 +02:00
You can pass in any additional options even if they're
not listed in the docs
2024-04-20 14:24:00 +02:00
'';
default = {};
2024-04-08 02:28:49 +02:00
type = submodule {
freeformType = attrsOf anything;
options = opts;
};
};
2023-02-06 19:57:35 +01:00
}