mirror of
https://github.com/neovim/nvim-lspconfig
synced 2025-03-11 04:27:36 +00:00
28 lines
804 B
Lua
28 lines
804 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(filename)
|
|
return util.root_pattern(unpack(root_files))(filename) or util.path.dirname(filename)
|
|
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`
|
|
]],
|
|
},
|
|
}
|