blob: e7acbac51462e34602518cbf0093506209db4c5b (
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,
}
|