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