mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-22 07:13:44 +08:00
17 lines
298 B
Lua
Vendored
17 lines
298 B
Lua
Vendored
local util = require 'lspconfig/util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'earthlyls' },
|
|
filetypes = { 'earthfile' },
|
|
root_dir = util.root_pattern 'Earthfile',
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/glehmann/earthlyls
|
|
|
|
A fast language server for earthly.
|
|
]],
|
|
},
|
|
}
|