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/solidity_ls.lua
2023-03-29 11:59:27 +08:00

25 lines
599 B
Lua

local util = require 'lspconfig.util'
local bin_name = 'solidity-language-server'
if vim.fn.has 'win32' == 1 then
bin_name = bin_name .. '.cmd'
end
return {
default_config = {
cmd = { bin_name, '--stdio' },
filetypes = { 'solidity' },
root_dir = util.root_pattern('.git', 'package.json'),
},
docs = {
description = [[
npm install -g solidity-language-server
solidity-language-server is a language server for the solidity language ported from the vscode solidity extension
]],
default_config = {
root_dir = [[root_pattern(".git", "package.json")]],
},
},
}