mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:20:05 +08:00
19 lines
375 B
Lua
Vendored
19 lines
375 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'fennel-language-server' },
|
|
filetypes = { 'fennel' },
|
|
single_file_support = true,
|
|
root_dir = util.find_git_ancestor,
|
|
settings = {},
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/rydesun/fennel-language-server
|
|
|
|
Fennel language server protocol (LSP) support.
|
|
]],
|
|
},
|
|
}
|