dotfiles/nvim/coc-settings.json

28 lines
689 B
JSON
Raw Permalink Normal View History

2021-06-26 21:16:10 +01:00
{
2024-05-20 09:36:29 +01:00
"inlayHint": {
"enable": false
},
2021-06-26 21:16:10 +01:00
"languageserver": {
"rust": {
"command": "rustup",
2022-12-07 13:31:02 +00:00
"args": ["run", "stable", "rust-analyzer"],
2021-06-26 21:16:10 +01:00
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"]
},
2022-12-07 13:31:02 +00:00
"elmLS": {
2021-06-26 21:16:10 +01:00
"command": "elm-language-server",
"filetypes": ["elm"],
"rootPatterns": ["elm.json"]
2024-05-28 12:40:25 +01:00
},
"python": {
"command": "pylsp",
"filetypes": ["python"]
2024-06-22 12:24:50 +01:00
},
"typscript": {
"command": "typescript-language-server",
"args": ["--stdio"],
"filetypes": ["typescript"]
2021-06-26 21:16:10 +01:00
}
}
}