mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
17 lines
554 B
Lua
17 lines
554 B
Lua
---@brief
|
|
---
|
|
--- [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`
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'racket', '--lib', 'racket-langserver' },
|
|
filetypes = { 'racket', 'scheme' },
|
|
root_markers = { '.git' },
|
|
}
|