1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/pluginmanagers/lazy.nix
2025-10-23 07:57:54 +00:00

229 lines
7.5 KiB
Nix

{
lib,
pkgs,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "lazy";
package = "lazy-nvim";
maintainers = [ ];
dependencies = [
"git"
];
settingsExample = {
ui.border = "rounded";
checker.enabled = true;
};
# TODO: Added 2025-10-23, remove after 26.05
optionsRenamedToSettings =
map
(optName: [
"performance"
"rtp"
optName
])
[
"reset"
"path"
"disabled_plugins"
];
extraOptions =
let
inherit (lib.nixvim) defaultNullOpts;
in
{
plugins =
let
inherit (lib) mkOption types;
inherit (lib.nixvim)
mkNullOrOption
mkNullOrLuaFn
mkNullOrStrLuaFnOr
;
pluginType =
with types;
either package (submodule {
options = {
dir = mkNullOrOption str "A directory pointing to a local plugin";
pkg = mkOption {
type = package;
description = "Vim plugin to install";
};
name = mkNullOrOption str "Name of the plugin to install";
dev = defaultNullOpts.mkBool false ''
When true, a local plugin directory will be used instead.
See config.dev
'';
lazy = defaultNullOpts.mkBool true ''
When true, the plugin will only be loaded when needed.
Lazy-loaded plugins are automatically loaded when their Lua modules are required,
or when one of the lazy-loading handlers triggers
'';
enabled = defaultNullOpts.mkStrLuaFnOr bool "`true`" ''
When false then this plugin will not be included in the spec. (accepts fun():boolean)
'';
cond = defaultNullOpts.mkStrLuaFnOr bool "`true`" ''
When false, or if the function returns false,
then this plugin will not be loaded. Useful to disable some plugins in vscode,
or firenvim for example. (accepts fun(LazyPlugin):boolean)
'';
dependencies = mkNullOrOption (eitherRecursive str listOfPlugins) "Plugin dependencies";
init = mkNullOrLuaFn "init functions are always executed during startup";
config = mkNullOrStrLuaFnOr (enum [ true ]) ''
config is executed when the plugin loads.
The default implementation will automatically run require(MAIN).setup(opts).
Lazy uses several heuristics to determine the plugin's MAIN module automatically based on the plugin's name.
See also opts. To use the default implementation without opts set config to true.
'';
main = mkNullOrOption str ''
You can specify the main module to use for config() and opts(),
in case it can not be determined automatically. See config()
'';
submodules = defaultNullOpts.mkBool true ''
When false, git submodules will not be fetched.
Defaults to true
'';
event = mkNullOrOption (maybeRaw (either str (listOf str))) ''
Lazy-load on event. Events can be specified as BufEnter or with a pattern like BufEnter *.lua"
'';
cmd = mkNullOrOption (maybeRaw (either str (listOf str))) "Lazy-load on command";
ft = mkNullOrOption (maybeRaw (either str (listOf str))) "Lazy-load on filetype";
keys = mkNullOrOption (maybeRaw (either str (listOf str))) "Lazy-load on key mapping";
module = mkNullOrOption (enum [ false ]) ''
Do not automatically load this Lua module when it's required somewhere
'';
priority = mkNullOrOption number ''
Only useful for start plugins (lazy=false) to force loading certain plugins first.
Default priority is 50. It's recommended to set this to a high number for colorschemes.
'';
optional = defaultNullOpts.mkBool false ''
When a spec is tagged optional, it will only be included in the final spec,
when the same plugin has been specified at least once somewhere else without optional.
This is mainly useful for Neovim distros, to allow setting options on plugins that may/may not be part
of the user's plugins
'';
opts = mkNullOrOption (maybeRaw (attrsOf anything)) ''
opts should be a table (will be merged with parent specs),
return a table (replaces parent specs) or should change a table.
The table will be passed to the Plugin.config() function.
Setting this value will imply Plugin.config()
'';
};
});
listOfPlugins = types.listOf pluginType;
in
mkOption {
type = listOfPlugins;
default = [ ];
description = "List of plugins";
};
};
extraConfig = cfg: {
plugins.lazy.settings =
let
processPlugin =
plugin:
let
mkEntryFromDrv =
p:
if lib.isDerivation p then
{
name = "${lib.getName p}";
path = p;
}
else
{
name = "${lib.getName p.pkg}";
path = p.pkg;
};
processDependencies =
if plugin ? dependencies && plugin.dependencies != null then
builtins.concatMap processPlugin plugin.dependencies
else
[ ];
in
[ (mkEntryFromDrv plugin) ] ++ processDependencies;
processedPlugins = builtins.concatLists (builtins.map processPlugin cfg.plugins);
lazyPath = pkgs.linkFarm "lazy-plugins" processedPlugins;
pluginToLua =
plugin:
if lib.isDerivation plugin then
{ dir = "${lazyPath}/${lib.getName plugin}"; }
else
{
"__unkeyed" = plugin.name;
inherit (plugin)
cmd
cond
config
dev
enabled
event
ft
init
keys
lazy
main
module
name
optional
opts
priority
submodules
;
dependencies = lib.nixvim.ifNonNull' plugin.dependencies (
if lib.isList plugin.dependencies then
(pluginListToLua plugin.dependencies)
else
plugin.dependencies
);
dir =
if plugin ? dir && plugin.dir != null then plugin.dir else "${lazyPath}/${lib.getName plugin.pkg}";
};
pluginListToLua = map pluginToLua;
plugins = pluginListToLua cfg.plugins;
packedPlugins = if lib.length plugins == 1 then lib.head plugins else plugins;
in
lib.mkIf (cfg.plugins != [ ]) {
dev = {
path = lazyPath;
patterns = [ "." ];
fallback = false;
};
spec = packedPlugins;
};
};
}