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

19 lines
278 B
Nix
Raw Normal View History

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