Skip to content

Instantly share code, notes, and snippets.

@mengwangk
Created June 22, 2023 08:52
Show Gist options
  • Save mengwangk/3efe2503786c746dc55aba344d33532d to your computer and use it in GitHub Desktop.
Save mengwangk/3efe2503786c746dc55aba344d33532d to your computer and use it in GitHub Desktop.
Neovim PDE - Data Science and Blockchain (Part 2)
if not require("config").pde.solidty then
return {}
end
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, { "solidity" })
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
-- solc = {},
-- solang = {},
solidity_ls_nomicfoundation = {},
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment