aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/roc_ls.lua
blob: 6a2f923ab2d6a0b78af63d22db1cf0d306853aea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---@brief
---
--- https://github.com/roc-lang/roc/tree/main/crates/language_server#roc_language_server
---
--- The built-in language server for the Roc programming language.
--- [Installation](https://github.com/roc-lang/roc/tree/main/crates/language_server#installing)
---@type vim.lsp.Config
return {
  cmd = { 'roc_language_server' },
  filetypes = { 'roc' },
  root_markers = { '.git' },
}