Skip to content

Commit

Permalink
docs: update server_configurations.md
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
github-actions committed Oct 6, 2022
1 parent 04d66a0 commit 1c2a57d
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
34 changes: 34 additions & 0 deletions doc/server_configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [mlir_pdll_lsp_server](#mlir_pdll_lsp_server)
- [mm0_ls](#mm0_ls)
- [move_analyzer](#move_analyzer)
- [neocmake](#neocmake)
- [nickel_ls](#nickel_ls)
- [nil_ls](#nil_ls)
- [nimls](#nimls)
Expand Down Expand Up @@ -3954,6 +3955,39 @@ require'lspconfig'.move_analyzer.setup{}
```


## neocmake

https://github.com/Decodetalkers/neocmakelsp

CMake LSP Implementation



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


**Default values:**
- `cmd` :
```lua
{ "neocmakelsp", "--stdio" }
```
- `filetypes` :
```lua
{ "cmake" }
```
- `root_dir` :
```lua
root_pattern('.git', 'cmake')
```
- `single_file_support` :
```lua
true
```


## nickel_ls

Nickel Language Server
Expand Down
34 changes: 34 additions & 0 deletions doc/server_configurations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [mlir_pdll_lsp_server](#mlir_pdll_lsp_server)
- [mm0_ls](#mm0_ls)
- [move_analyzer](#move_analyzer)
- [neocmake](#neocmake)
- [nickel_ls](#nickel_ls)
- [nil_ls](#nil_ls)
- [nimls](#nimls)
Expand Down Expand Up @@ -3954,6 +3955,39 @@ require'lspconfig'.move_analyzer.setup{}
```


## neocmake

https://github.com/Decodetalkers/neocmakelsp

CMake LSP Implementation



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


**Default values:**
- `cmd` :
```lua
{ "neocmakelsp", "--stdio" }
```
- `filetypes` :
```lua
{ "cmake" }
```
- `root_dir` :
```lua
root_pattern('.git', 'cmake')
```
- `single_file_support` :
```lua
true
```


## nickel_ls

Nickel Language Server
Expand Down

0 comments on commit 1c2a57d

Please sign in to comment.