nix/home/config/nvim/module/plugin/lsp/Nix.nix
2024-11-06 01:07:30 +03:00

18 lines
227 B
Nix

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