1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-02 23:09:50 +01:00
neovim-flake/modules/plugins/lsp/null-ls/null-ls.nix

15 lines
327 B
Nix
Raw Normal View History

{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 = {};
};
};
}