mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 18:50:03 +08:00
20 lines
336 B
Lua
Vendored
20 lines
336 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'fennel-ls' },
|
|
filetypes = { 'fennel' },
|
|
root_dir = function(dir)
|
|
return util.find_git_ancestor(dir)
|
|
end,
|
|
settings = {},
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://sr.ht/~xerool/fennel-ls/
|
|
|
|
A language server for fennel.
|
|
]],
|
|
},
|
|
}
|