Skip to content

Commit

Permalink
docs: update configs.md
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
github-actions[bot] committed Dec 29, 2024
1 parent f6cb1e2 commit 8b15a1a
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions doc/configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ Nvim by running `:help lspconfig-all`.
- [cssls](#cssls)
- [cssmodules_ls](#cssmodules_ls)
- [cucumber_language_server](#cucumber_language_server)
- [cue](#cue)
- [custom_elements_ls](#custom_elements_ls)
- [cypher_ls](#cypher_ls)
- [daedalus_ls](#daedalus_ls)
Expand Down Expand Up @@ -2268,6 +2269,30 @@ Default config:
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/cucumber_language_server.lua:2](../lua/lspconfig/configs/cucumber_language_server.lua#L2)


## cue

https://github.com/cue-lang/cue

CUE makes it easy to validate data, write schemas, and ensure configurations align with policies.

Snippet to enable the language server:
```lua
require'lspconfig'.cue.setup{}
```

Default config:
- `cmd` :
```lua
{ "cue", "lsp" }
```
- `filetypes` :
```lua
{ "cue" }
```
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/cue.lua:4](../lua/lspconfig/configs/cue.lua#L4)
- `single_file_support` : `true`


## custom_elements_ls

https://github.com/Matsuuu/custom-elements-language-server
Expand Down
25 changes: 25 additions & 0 deletions doc/configs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ Nvim by running `:help lspconfig-all`.
- [cssls](#cssls)
- [cssmodules_ls](#cssmodules_ls)
- [cucumber_language_server](#cucumber_language_server)
- [cue](#cue)
- [custom_elements_ls](#custom_elements_ls)
- [cypher_ls](#cypher_ls)
- [daedalus_ls](#daedalus_ls)
Expand Down Expand Up @@ -2268,6 +2269,30 @@ Default config:
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/cucumber_language_server.lua:2](../lua/lspconfig/configs/cucumber_language_server.lua#L2)


## cue

https://github.com/cue-lang/cue

CUE makes it easy to validate data, write schemas, and ensure configurations align with policies.

Snippet to enable the language server:
```lua
require'lspconfig'.cue.setup{}
```

Default config:
- `cmd` :
```lua
{ "cue", "lsp" }
```
- `filetypes` :
```lua
{ "cue" }
```
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/cue.lua:4](../lua/lspconfig/configs/cue.lua#L4)
- `single_file_support` : `true`


## custom_elements_ls

https://github.com/Matsuuu/custom-elements-language-server
Expand Down

0 comments on commit 8b15a1a

Please sign in to comment.