neovim-flake/lib/types/plugins.nix

166 lines
4.2 KiB
Nix
Raw 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;
2024-06-25 17:47:33 +02:00
inherit (lib.types) submodule either package enum str lines attrsOf anything listOf nullOr oneOf;
2024-04-08 02:28:49 +02:00
# 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
};
2024-06-25 17:47:33 +02:00
luaInline = lib.mkOptionType {
name = "luaInline";
check = x: lib.nvim.lua.isLuaInline x;
};
lznPluginType = submodule {
options = {
## Should probably infer from the actual plugin somehow
## In general this is the name passed to packadd, so the dir name of the plugin
# name = mkOption {
# type= str;
# }
package = pluginType;
before = mkOption {
type = nullOr luaInline;
description = "Code to run before plugin is loaded";
default = null;
};
after = mkOption {
type = nullOr luaInline;
description = "Code to run after plugin is loaded";
default = null;
};
event = mkOption {
description = "Lazy-load on event";
default = "null";
type = let
event = submodule {
options = {
event = mkOption {
type = nullOr (either str (listOf str));
description = "Exact event name";
example = "BufEnter";
};
pattern = mkOption {
type = nullOr (either str (listOf str));
description = "Event pattern";
example = "BufEnter *.lua";
};
};
};
in
oneOf [str (listOf str) event];
};
cmd = mkOption {
description = "Lazy-load on command";
default = null;
type = nullOr (either str (listOf str));
};
ft = mkOption {
description = "Lazy-load on filetype";
default = null;
type = nullOr (either str (listOf str));
};
keys = mkOption {
description = "Lazy-load on key mapping";
default = null;
type = nullOr (either str (listOf str)); # TODO: support lz.n.KeysSpec
};
# TODO: enabled, beforeAll, colorscheme, priority, load
};
};
2023-02-06 19:57:35 +01:00
in {
2024-06-25 17:47:33 +02:00
inherit extraPluginType fromInputs pluginType luaInline lznPluginType;
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-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
}