mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:40:05 +08:00
20 lines
336 B
Lua
20 lines
336 B
Lua
|
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.
|
||
|
]],
|
||
|
},
|
||
|
}
|