blob: db11f091eb19cb3bc92f34fbc8e5c87caa035539 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
local util = require 'lspconfig.util'
---@brief
---
-- https://docs.soliditylang.org/en/latest/installing-solidity.html
--
-- solc is the native language server for the Solidity language.
return {
cmd = { 'solc', '--lsp' },
filetypes = { 'solidity' },
root_dir = function(bufnr, on_dir)
local fname = vim.api.nvim_buf_get_name(bufnr)
on_dir(util.root_pattern('hardhat.config.*', '.git')(fname))
end,
}
|