mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
17 lines
402 B
Lua
Vendored
17 lines
402 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'reason-language-server' },
|
|
filetypes = { 'reason' },
|
|
root_dir = util.root_pattern('bsconfig.json', '.git'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
Reason language server
|
|
|
|
You can install reason language server from [reason-language-server](https://github.com/jaredly/reason-language-server) repository.
|
|
]],
|
|
},
|
|
}
|