mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:40:06 +08:00
28 lines
795 B
Lua
28 lines
795 B
Lua
local configs = require 'lspconfig/configs'
|
|
local util = require 'lspconfig/util'
|
|
|
|
local root_files = {
|
|
'.git',
|
|
}
|
|
|
|
configs.racket_langserver = {
|
|
default_config = {
|
|
cmd = { 'racket', '--lib', 'racket-langserver' },
|
|
filetypes = { 'racket', 'scheme' },
|
|
root_dir = function(fname)
|
|
return util.root_pattern(unpack(root_files))(fname) or util.path.dirname(fname)
|
|
end,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
[https://github.com/jeapostrophe/racket-langserver](https://github.com/jeapostrophe/racket-langserver)
|
|
|
|
The Racket language server. This project seeks to use
|
|
[DrRacket](https://github.com/racket/drracket)'s public API to provide
|
|
functionality that mimics DrRacket's code tools as closely as possible.
|
|
|
|
Install via `raco`: `raco pkg install racket-langserver`
|
|
]],
|
|
},
|
|
}
|