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

17 lines
471 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"]
2021-09-24 13:06:43 -05:00
}
},
2021-07-08 09:39:31 -05:00
"elixir.pathToElixirLS": "~/.elixir-ls/release/language_server.sh",
2021-11-11 11:44:26 -06:00
"rust-analyzer.checkOnSave.command": "clippy",
2021-07-08 09:39:31 -05:00
"diagnostic-languageserver.filetypes": {
"elixir": ["mix_credo", "mix_credo_compile"],
"eelixir": ["mix_credo", "mix_credo_compile"]
}
}