1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 02:30:04 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/scheme_langserver.lua

24 lines
554 B
Lua
Vendored

local util = require 'lspconfig.util'
local bin_name = 'scheme-langserver'
local cmd = { bin_name }
local root_files = {
'Akku.manifest',
'.git',
}
return {
default_config = {
cmd = cmd,
filetypes = { 'scheme' },
root_dir = util.root_pattern(unpack(root_files)),
single_file_support = true,
},
docs = {
description = [[
https://github.com/ufo5260987423/scheme-langserver
`scheme-langserver`, a language server protocol implementation for scheme.
And for nvim user, please add .sls to scheme file extension list.
]],
},
}