aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2021-06-13 21:42:08 +0000
committergithub-actions <github-actions@github.com>2021-06-13 21:42:08 +0000
commit28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f (patch)
treef21273ed21e800769a5571a443aac439167d3697
parentfix(cssls): fix linting erros (#977) (diff)
downloadnvim-lspconfig-28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f.tar
nvim-lspconfig-28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f.tar.gz
nvim-lspconfig-28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f.tar.bz2
nvim-lspconfig-28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f.tar.lz
nvim-lspconfig-28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f.tar.xz
nvim-lspconfig-28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f.tar.zst
nvim-lspconfig-28949dcd1210bc2bbfb494d6d9165ef22dbd6c4f.zip
[docgen] Update CONFIG.md
skip-checks: true
-rw-r--r--CONFIG.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/CONFIG.md b/CONFIG.md
index b6c73a7c..9f56cf61 100644
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -351,7 +351,6 @@ require'lspconfig'.crystalline.setup{}
## cssls
-
https://github.com/hrsh7th/vscode-langservers-extracted
`css-languageserver` can be installed via `npm`:
@@ -359,7 +358,7 @@ https://github.com/hrsh7th/vscode-langservers-extracted
```sh
npm i -g vscode-langservers-extracted
```
-
+
Neovim does not currently include built-in snippets. `vscode-css-language-server` only provides completions when snippet support is enabled. To enable completion, install a snippet plugin and add the following override to your language client capabilities during setup.
```lua
@@ -3423,7 +3422,7 @@ require'lspconfig'.ocamllsp.setup{}
Default Values:
cmd = { "ocamllsp" }
- filetypes = { "ocaml", "ocamllex", "menhir", "reason", "ocamlinterface" }
+ filetypes = { "menhir", "ocamlinterface", "ocaml", "ocamllex", "reason" }
get_language_id = function (_, ftype) return language_id_of[ftype] end
root_dir = root_pattern("*.opam", "esy.json", "package.json", ".git")
```