Changes
1 changed files (+18/-0)
-
-
@@ -35,6 +35,12 @@ type = lib.types.nullOr lib.types.nonEmptyStr;default = null; }; settings = lib.mkOption { type = lib.types.nullOr lib.types.nonEmptyStr; default = null; }; }; };
-
@@ -52,6 +58,10 @@ initOptions =if (c.initOptions != null) then "init_options = { ${c.initOptions} }," else ""; settings = if (c.settings != null) then "settings = { ${c.settings} }," else ""; in '' lspconfig.${c.name}.setup {
-
@@ -60,6 +70,7 @@ ${rootDir}single_file_support = ${lib.trivial.boolToString c.singleFileSupport}, capabilities = capabilities, ${initOptions} ${settings} } ''; in
-
@@ -104,6 +115,13 @@default = { name = "denols"; rootDirPattern = "deno.json"; settings = '' deno = { suggest = { autoImports = false, } } ''; }; };
-