diff options
Diffstat (limited to 'lua/atopile')
| -rw-r--r-- | lua/atopile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/atopile b/lua/atopile new file mode 100644 index 00000000..6548b7e9 --- /dev/null +++ b/lua/atopile @@ -0,0 +1,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' }, +} |
