blob: eb18893440ece13406147cf089a2a323b582b2d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---@brief
---
--- https://github.com/uiua-lang/uiua/
---
--- The builtin language server of the Uiua interpreter.
---
--- The Uiua interpreter can be installed with `cargo install uiua`
---@type vim.lsp.Config
return {
cmd = { 'uiua', 'lsp' },
filetypes = { 'uiua' },
root_markers = { 'main.ua', '.fmt.ua', '.git' },
}
|