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