mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
73 lines
2 KiB
Nix
73 lines
2 KiB
Nix
# mkSourcePlugin, returns a module
|
|
sourceType: sourceName:
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (import ./packages.nix lib) packaged;
|
|
pkg = packaged.${sourceName};
|
|
|
|
cfg = config.plugins.none-ls;
|
|
cfg' = config.plugins.none-ls.sources.${sourceType}.${sourceName};
|
|
in
|
|
{
|
|
options.plugins.none-ls.sources.${sourceType}.${sourceName} =
|
|
{
|
|
enable = lib.mkEnableOption "the ${sourceName} ${sourceType} source for none-ls";
|
|
# Support strLua for compatibility with the old withArgs option
|
|
settings = lib.nixvim.defaultNullOpts.mkStrLuaOr' {
|
|
type = with lib.types; attrsOf anything;
|
|
description = ''
|
|
Options provided to the `require('null-ls').builtins.${sourceType}.${sourceName}.with` function.
|
|
|
|
See upstream's [`BUILTIN_CONFIG`] documentation.
|
|
|
|
[`BUILTIN_CONFIG`]: https://github.com/nvimtools/none-ls.nvim/blob/main/doc/BUILTIN_CONFIG.md
|
|
'';
|
|
example = {
|
|
extra_filetypes = [ "toml" ];
|
|
disabled_filetypes = [ "lua" ];
|
|
extra_args = [
|
|
"-i"
|
|
"2"
|
|
"-ci"
|
|
];
|
|
};
|
|
};
|
|
}
|
|
# Only declare a package option if a package is required
|
|
// lib.optionalAttrs (packaged ? ${sourceName}) {
|
|
package =
|
|
lib.nixvim.mkMaybeUnpackagedOption "plugins.none-ls.sources.${sourceType}.${sourceName}.package"
|
|
pkgs
|
|
sourceName
|
|
pkg;
|
|
};
|
|
|
|
# TODO: Added 2024-07-16; remove after 24.11
|
|
imports =
|
|
let
|
|
basePath = [
|
|
"plugins"
|
|
"none-ls"
|
|
"sources"
|
|
sourceType
|
|
sourceName
|
|
];
|
|
in
|
|
[ (lib.mkRenamedOptionModule (basePath ++ [ "withArgs" ]) (basePath ++ [ "settings" ])) ];
|
|
|
|
config = lib.mkIf (cfg.enable && cfg'.enable) {
|
|
plugins.none-ls.settings.sources = lib.mkDefault [
|
|
(
|
|
"require('null-ls').builtins.${sourceType}.${sourceName}"
|
|
+ lib.optionalString (cfg'.settings != null) ".with(${lib.nixvim.toLuaObject cfg'.settings})"
|
|
)
|
|
];
|
|
|
|
extraPackages = [ (cfg'.package or null) ];
|
|
};
|
|
}
|