lsp/null-ls: use string type for diagnostic format

This commit is contained in:
NotAShelf 2024-05-16 19:35:19 +03:00
parent cfbed8ceb1
commit f0f2c08e9f
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
1 changed files with 2 additions and 4 deletions

View File

@ -1,8 +1,6 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption mkOption;
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";
@ -10,8 +8,8 @@ in {
debug = mkEnableOption "debugging information for `null-ls";
diagnostics_format = mkOption {
type = luaInline;
default = mkLuaInline "[#{m}] #{s} (#{c})";
type = str;
default = "[#{m}] #{s} (#{c})";
description = "Diagnostic output format for null-ls";
};