nvim/lsp/atopile.lua
2025-09-22 16:07:34 +02:00

14 lines
378 B
Lua

---@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' },
}