aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/solc.lua
blob: 0e03bab374a476cfb2b059d1c7d0d47351df15ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---@brief
---
--- https://docs.soliditylang.org/en/latest/installing-solidity.html
---
--- solc is the native language server for the Solidity language.

local util = require 'lspconfig.util'

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,
}