nvf/lib/types/plugins.nix
NotAShelf d1fdbfc0b1
lib/types: allow passing raw Lua as a value to setupOpts directly
Lets users pass an entire inline Lua table to `setupOpts` for ad-hoc
overrides.

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I7901c8b6e9b8d4e8c23685ad35fb507e6a6a6964
2026-06-20 02:09:03 +03:00

109 lines
2.7 KiB
Nix

{
lib,
self,
}: let
inherit (lib.options) mkOption;
inherit (lib.attrsets) attrNames mapAttrs' filterAttrs nameValuePair;
inherit (lib.strings) hasPrefix removePrefix;
inherit (lib.types) submodule either package enum str lines anything listOf nullOr;
inherit (lib.nvim.types) luaInline;
# Get the names of all flake inputs that start with the given prefix.
fromInputs = {
inputs,
prefix,
}:
mapAttrs' (n: v: nameValuePair (removePrefix prefix n) {src = v;}) (filterAttrs (n: _: hasPrefix prefix n) inputs);
# Get the names of all npins
pluginInputNames = ["blink-cmp"] ++ attrNames self.pins;
# You can either use the name of the plugin or a package.
pluginType = nullOr (
either
package
(enum (pluginInputNames ++ ["nvim-treesitter" "flutter-tools-patched" "vim-repeat"]))
);
pluginsType = listOf pluginType;
extraPluginType = submodule {
options = {
package = mkOption {
type = pluginType;
description = "Plugin Package.";
};
after = mkOption {
type = listOf str;
default = [];
description = "Setup this plugin after the following ones.";
};
setup = mkOption {
type = lines;
default = "";
description = "Lua code to run during setup.";
example = "require('aerial').setup {}";
};
};
};
borderPresets = ["none" "single" "double" "rounded" "solid" "shadow"];
in {
inherit extraPluginType fromInputs pluginType;
borderType = either (enum borderPresets) (listOf (either str (listOf str)));
pluginsOpt = {
description,
example,
default ? [],
}:
mkOption {
inherit example description default;
type = pluginsType;
};
luaInline = lib.mkOptionType {
name = "luaInline";
check = x: lib.nvim.lua.isLuaInline x;
};
/*
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: let
luaOrModule =
either (submodule {
freeformType = anything;
options = opts;
})
luaInline;
in
mkOption {
type = luaOrModule;
default = {};
description = ''
Option table to pass into the setup function of ${pluginName}.
Accepts either an attribute set of options, or a raw Lua expression
via `lib.mkLuaInline`. When set to a `luaInline` value, the
expression is passed verbatim as the argument to `setup()`.
You can pass in any additional options even if they're not listed
in the docs.
'';
};
}