mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 09:50:04 +08:00
17 lines
298 B
Lua
17 lines
298 B
Lua
|
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.
|
||
|
]],
|
||
|
},
|
||
|
}
|