mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
16 lines
381 B
Lua
16 lines
381 B
Lua
---@brief
|
|
---
|
|
--- https://robotcode.io
|
|
---
|
|
--- RobotCode - Language Server Protocol implementation for Robot Framework.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'robotcode', 'language-server' },
|
|
filetypes = { 'robot', 'resource' },
|
|
root_markers = { 'robot.toml', 'pyproject.toml', 'Pipfile', '.git' },
|
|
get_language_id = function(_, _)
|
|
return 'robotframework'
|
|
end,
|
|
}
|