This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/common/neovim/coc-settings.json

22 lines
699 B
JSON
Raw Normal View History

2021-07-08 09:39:31 -05:00
{
"coc.preferences.formatOnSaveFiletypes": ["elixir", "ex", "exs", "typescript", "css", "markdown"],
2021-09-24 13:06:43 -05:00
"languageserver": {
2021-11-08 23:41:55 -06:00
"nim": {
"command": "nimlsp",
"filetypes": ["nim"]
},
"arduino": {
2021-09-24 13:06:43 -05:00
"command":"/home/daniel/.home/.go/bin/arduino-language-server",
"rootPatterns":["*.ino"],
"filetypes":["arduino"],
"args":["-cli", "/usr/bin/arduino-cli", "-clangd", "/usr/bin/clangd", "-cli-config", "/path/to/arduino-cli.yaml"]
}
},
2021-07-08 09:39:31 -05:00
"elixir.pathToElixirLS": "~/.elixir-ls/release/language_server.sh",
"diagnostic-languageserver.filetypes": {
"elixir": ["mix_credo", "mix_credo_compile"],
"eelixir": ["mix_credo", "mix_credo_compile"]
}
}