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

18 lines
227 B
Nix

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