mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
15 lines
327 B
Nix
15 lines
327 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
inherit (lib.types) attrsOf str;
|
|
in {
|
|
options.vim.lsp.null-ls = {
|
|
enable = mkEnableOption "null-ls, also enabled automatically";
|
|
|
|
sources = mkOption {
|
|
description = "null-ls sources";
|
|
type = attrsOf str;
|
|
default = {};
|
|
};
|
|
};
|
|
}
|