aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/pony_language_server.lua
blob: 88a55e9d7ef7830b3502eac64adce8d00df02cf1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---@brief
---
--- https://github.com/ponylang/pony-language-server
---
--- Language server for the Pony programming language

---@type vim.lsp.Config
return {
  cmd = { 'pony-lsp' },
  filetypes = { 'pony' },
  root_markers = { 'corral.json', '.git' },
}