1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-02 11:49:48 +01:00
neovim-flake/modules/lsp/null-ls/null-ls.nix

20 lines
328 B
Nix

{
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
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 = {};
};
};
}