nix/home/config/nvim/module/plugin/lsp/Nix.nix

19 lines
278 B
Nix

{ ... }:
{
text = ''
local lspconfig = require("lspconfig")
lspconfig.nixd.setup({
settings = {
nixd = {
diagnostic = {
suppress = {
"sema-escaping-with"
},
},
},
},
})
'';
}