aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/solc.lua
blob: aaa2dd1402c744f1ff2cd667f6cd2a0406bb5ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---@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'

---@type vim.lsp.Config
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,
}