blob: 6548b7e9580b1110a0ee5ecb9694dc57a8997574 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---@brief
---
--- https://atopile.io/
---
--- A language server for atopile Programming Language.
---
--- It comes with the atopile compiler, for installation see: [Installing atopile](https://docs.atopile.io/atopile/guides/install)
---@type vim.lsp.Config
return {
cmd = { 'ato', 'lsp', 'start' },
filetypes = { 'ato' },
root_markers = { 'ato.yaml', '.ato', '.git' },
}
|