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[bot] committed Oct 6, 2023
1 parent cafbeff commit 2b361e0
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
37 changes: 37 additions & 0 deletions doc/server_configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [turtle_ls](#turtle_ls)
- [typeprof](#typeprof)
- [typst_lsp](#typst_lsp)
- [uiua](#uiua)
- [unison](#unison)
- [unocss](#unocss)
- [uvls](#uvls)
Expand Down Expand Up @@ -10396,6 +10397,42 @@ require'lspconfig'.typst_lsp.setup{}
```


## uiua

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

The builtin language server of the Uiua interpreter.

The Uiua interpreter can be installed with `cargo install uiua`



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


**Default values:**
- `cmd` :
```lua
{ "uiua", "lsp" }
```
- `filetypes` :
```lua
{ "uiua" }
```
- `root_dir` :
```lua
root_pattern(
'main.ua',
'fmt.ua',
'.git'
)

```


## unison

https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown
Expand Down
37 changes: 37 additions & 0 deletions doc/server_configurations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [turtle_ls](#turtle_ls)
- [typeprof](#typeprof)
- [typst_lsp](#typst_lsp)
- [uiua](#uiua)
- [unison](#unison)
- [unocss](#unocss)
- [uvls](#uvls)
Expand Down Expand Up @@ -10396,6 +10397,42 @@ require'lspconfig'.typst_lsp.setup{}
```


## uiua

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

The builtin language server of the Uiua interpreter.

The Uiua interpreter can be installed with `cargo install uiua`



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


**Default values:**
- `cmd` :
```lua
{ "uiua", "lsp" }
```
- `filetypes` :
```lua
{ "uiua" }
```
- `root_dir` :
```lua
root_pattern(
'main.ua',
'fmt.ua',
'.git'
)

```


## unison

https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown
Expand Down

0 comments on commit 2b361e0

Please sign in to comment.