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

18 lines
227 B
Nix
Raw Normal View History

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
'';
}