mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 21:00:06 +08:00
20 lines
422 B
Lua
Vendored
20 lines
422 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'solc', '--lsp' },
|
|
filetypes = { 'solidity' },
|
|
root_dir = util.root_pattern '.git',
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://docs.soliditylang.org/en/latest/installing-solidity.html
|
|
|
|
solc is the native language server for the Solidity language.
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern(".git")]],
|
|
},
|
|
},
|
|
}
|