2024-04-06 03:03:58 +03:00
|
|
|
{ ... }: {
|
|
|
|
text = ''
|
|
|
|
local lspconfig = require("lspconfig")
|
|
|
|
|
2024-06-25 04:04:39 +03:00
|
|
|
lspconfig.nixd.setup({
|
|
|
|
settings = {
|
|
|
|
nixd = {
|
|
|
|
diagnostic = {
|
|
|
|
suppress = {
|
|
|
|
"sema-escaping-with"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2024-04-06 03:03:58 +03:00
|
|
|
'';
|
|
|
|
}
|