nix-configs/hm-imports/nvim/config/coc-settings.json
Philipp Hochkamp 2fd8760eda vimtex
2023-03-10 19:05:45 +01:00

39 lines
1 KiB
JSON

{
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.updates.channel": "nightly",
"texlab.build.executable": "tectonic",
"texlab.build.args": [
"%f",
"--keep-logs",
"--synctex",
],
"texlab.build.onSave": true,
"texlab.chktex.onOpenAndSave": true,
"texlab.build.forwardSearchAfter": false,
"texlab.forwardSearch.executable": "/Applications/Skim.app/Contents/SharedSupport/displayline",
"texlab.forwardSearch.args": ["-r", "-d", "%l","%p","%f"],
"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": {}
}
}
}