mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:40:05 +08:00
1c4627c212
ref: 9bda20fb96
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.
|
|
]],
|
|
},
|
|
}
|