Skip to content

Instantly share code, notes, and snippets.

@mengwangk
Last active July 14, 2023 14:00
Show Gist options
  • Save mengwangk/147f6dd2ae4c1bad82d4834cbd82e47e to your computer and use it in GitHub Desktop.
Save mengwangk/147f6dd2ae4c1bad82d4834cbd82e47e to your computer and use it in GitHub Desktop.
Neovim PDE -Flutter, Kotlin, Ruby, and Other Languages
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