mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-01-09 14:51:30 +01:00
13 lines
226 B
Lua
13 lines
226 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/glehmann/earthlyls
|
|
---
|
|
--- A fast language server for earthly.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'earthlyls' },
|
|
filetypes = { 'earthfile' },
|
|
root_markers = { 'Earthfile' },
|
|
}
|