mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
15 lines
326 B
Lua
15 lines
326 B
Lua
---@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' },
|
|
}
|