lsp/null-lsp: allow null-ls options to be configured

This should probably still be converted to setupOpts. Missing docs
This commit is contained in:
raf 2024-05-16 19:09:20 +03:00
commit eefc7a9d1d
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
2 changed files with 51 additions and 18 deletions

View file

@ -1,10 +1,32 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.types) attrsOf str;
inherit (lib.types) attrsOf str int;
inherit (lib.generators) mkLuaInline;
inherit (lib.nvim.types) luaInline;
in {
options.vim.lsp.null-ls = {
enable = mkEnableOption "null-ls, also enabled automatically";
debug = mkEnableOption "debugging information for `null-ls";
diagnostics_format = mkOption {
type = luaInline;
default = mkLuaInline "[#{m}] #{s} (#{c})";
description = "Diagnostic output format for null-ls";
};
debounce = mkOption {
type = int;
default = 250;
description = "Default debounce";
};
default_timeout = mkOption {
type = int;
default = 5000;
description = "Default timeout value, in miliseconds";
};
sources = mkOption {
description = "null-ls sources";
type = attrsOf str;