Skip to content

Instantly share code, notes, and snippets.

@mengwangk
Created July 15, 2023 04:22
Show Gist options
  • Save mengwangk/8af1bd8521ee6109c1f5fe5cd87dba01 to your computer and use it in GitHub Desktop.
Save mengwangk/8af1bd8521ee6109c1f5fe5cd87dba01 to your computer and use it in GitHub Desktop.
Neovim PDE -Flutter, Kotlin, Ruby, and Other Languages
if not require("config").pde.elixir then
return {}
end
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"elixir",
"heex",
"eex",
})
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
elixirls = {},
},
},
},
{
"nvim-neotest/neotest",
optional = true,
dependencies = {
"jfpedroza/neotest-elixir",
},
opts = {
adapters = {
["neotest-elixir"] = {},
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment