aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-09-15 10:12:57 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-09-15 10:12:57 +0000
commitcc388d3f6b9c7c943ae2b2dcd46ad470fd257f91 (patch)
tree13789a2ce8e8d49b13625a6df179671ee0ce6cfb
parentfeat(denols): enable import completion from registries #2793 (diff)
downloadnvim-lspconfig-cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91.tar
nvim-lspconfig-cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91.tar.gz
nvim-lspconfig-cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91.tar.bz2
nvim-lspconfig-cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91.tar.lz
nvim-lspconfig-cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91.tar.xz
nvim-lspconfig-cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91.tar.zst
nvim-lspconfig-cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91.zip
docs: update server_configurations.md
skip-checks: true
-rw-r--r--doc/server_configurations.md24
-rw-r--r--doc/server_configurations.txt24
2 files changed, 34 insertions, 14 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 21e30000..5e1d6a9b 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -2157,17 +2157,27 @@ require'lspconfig'.denols.setup{}
["workspace/executeCommand"] = <function 2>
}
```
- - `init_options` :
- ```lua
- {
- enable = true,
- unstable = false
- }
- ```
- `root_dir` :
```lua
root_pattern("deno.json", "deno.jsonc", ".git")
```
+ - `settings` :
+ ```lua
+ {
+ deno = {
+ enable = true,
+ suggest = {
+ imports = {
+ hosts = {
+ ["https://crux.land"] = true,
+ ["https://deno.land"] = true,
+ ["https://x.nest.land"] = true
+ }
+ }
+ }
+ }
+ }
+ ```
## dhall_lsp_server
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index 21e30000..5e1d6a9b 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -2157,17 +2157,27 @@ require'lspconfig'.denols.setup{}
["workspace/executeCommand"] = <function 2>
}
```
- - `init_options` :
- ```lua
- {
- enable = true,
- unstable = false
- }
- ```
- `root_dir` :
```lua
root_pattern("deno.json", "deno.jsonc", ".git")
```
+ - `settings` :
+ ```lua
+ {
+ deno = {
+ enable = true,
+ suggest = {
+ imports = {
+ hosts = {
+ ["https://crux.land"] = true,
+ ["https://deno.land"] = true,
+ ["https://x.nest.land"] = true
+ }
+ }
+ }
+ }
+ }
+ ```
## dhall_lsp_server