neovim-flake/lib/languages.nix

38 lines
952 B
Nix
Raw Permalink Normal View History

2023-10-22 17:10:28 +02:00
# From home-manager: https://github.com/nix-community/home-manager/blob/master/modules/lib/booleans.nix
2024-03-24 01:14:39 +01:00
{lib}: let
inherit (builtins) isString getAttr;
inherit (lib.options) mkOption;
inherit (lib.types) bool;
inherit (lib.nvim.attrsets) mapListToAttrs;
2024-03-24 01:14:39 +01:00
in {
2023-10-22 17:10:28 +02:00
# Converts a boolean to a yes/no string. This is used in lots of
# configuration formats.
diagnosticsToLua = {
lang,
config,
2024-03-24 01:14:39 +01:00
diagnosticsProviders,
}:
mapListToAttrs
(v: let
type =
if isString v
then v
else getAttr v.type;
package =
if isString v
then diagnosticsProviders.${type}.package
else v.package;
in {
name = "${lang}-diagnostics-${type}";
value = diagnosticsProviders.${type}.nullConfig package;
})
config;
2023-09-23 17:36:25 +02:00
mkEnable = desc:
2024-03-24 01:14:39 +01:00
mkOption {
2023-09-23 17:36:25 +02:00
description = "Turn on ${desc} for enabled languages by default";
2024-03-24 01:14:39 +01:00
type = bool;
2023-09-23 17:36:25 +02:00
default = false;
};
}