mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
322 B
Lua
13 lines
322 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/robocorp/robotframework-lsp
|
|
---
|
|
--- Language Server Protocol implementation for Robot Framework.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'robotframework_ls' },
|
|
filetypes = { 'robot' },
|
|
root_markers = { 'robotidy.toml', 'pyproject.toml', 'conda.yaml', 'robot.yaml', '.git' },
|
|
}
|