1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 07:10:05 +08:00
SpaceVim/bundle/nvim-lspconfig-0.1.4/lua/lspconfig/server_configurations/hhvm.lua
2023-03-29 11:59:27 +08:00

22 lines
516 B
Lua

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'hh_client', 'lsp' },
filetypes = { 'php', 'hack' },
root_dir = util.root_pattern '.hhconfig',
},
docs = {
description = [[
Language server for programs written in Hack
https://hhvm.com/
https://github.com/facebook/hhvm
See below for how to setup HHVM & typechecker:
https://docs.hhvm.com/hhvm/getting-started/getting-started
]],
default_config = {
root_dir = [[root_pattern(".hhconfig")]],
},
},
}