nix-configs/hm-imports/nvim/config/coc-settings.json
Philipp Hochkamp ff9e47e96b update
2023-03-07 17:00:51 +01:00

28 lines
640 B
JSON

{
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.updates.channel": "nightly",
"html.validate.scripts": true,
"languageserver": {
"nix": {
"command": "nil",
"filetypes": ["nix"],
"settings": {
"nil": {
"formatting": { "command": ["nixpkgs-fmt"] }
}
},
"rootPatterns": ["flake.nix"]
},
"csharp-ls": {
"command": "csharp-ls",
"filetypes": ["cs", "razor"]
},
"terraform": {
"command": "terraform-ls",
"args": ["serve"],
"filetypes": ["terraform", "tf"],
"initializationOptions": {},
"settings": {}
}
}
}