dotfiles/.config/nvim/coc-settings.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2021-01-22 22:59:11 +01:00
{
2021-08-31 12:11:58 +02:00
"diagnostic.virtualText": true,
"diagnostic.virtualTextCurrentLineOnly": false,
2021-04-13 01:06:56 +02:00
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
2021-08-31 12:11:58 +02:00
"args": [
"--lsp"
],
"rootPatterns": [
"*.cabal",
"stack.yaml",
"cabal.project",
"package.yaml",
"hie.yaml"
],
"filetypes": [
"haskell",
"lhaskell"
]
2021-04-13 01:06:56 +02:00
},
"ocaml-lsp": {
"command": "opam",
2021-08-31 12:11:58 +02:00
"args": [
"config",
"exec",
"--",
"ocamllsp"
],
"filetypes": [
"ocaml",
"reason"
]
},
"mun": {
"command": "mun",
"rootPatterns": [
"mun.toml"
],
"trace.server": "verbose",
"args": [
"language-server"
],
"filetypes": [
"mun"
]
2021-08-31 22:24:12 +02:00
},
"zls" : {
"command": "zls",
"filetypes": ["zig"]
}
2021-04-13 01:06:56 +02:00
},
2021-04-20 14:34:02 +02:00
"java.format.enabled": true,
2021-08-31 22:24:12 +02:00
"java.format.onType.enabled": true
2021-01-22 22:59:11 +01:00
}