From 5f5e7a6027a38d7adaa7447b904fca515297530a Mon Sep 17 00:00:00 2001 From: "Suraj N. Kurapati" Date: Thu, 25 Jan 2024 11:24:01 -0800 Subject: [PATCH] mason: add Elixir language support --- plugins/mason.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/mason.lua b/plugins/mason.lua index 6566f34b..36edf54d 100644 --- a/plugins/mason.lua +++ b/plugins/mason.lua @@ -8,6 +8,7 @@ return { -- add more things to the ensure_installed table protecting against community packs modifying it opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { -- "lua_ls", + "elixirls", }) end, }, @@ -20,6 +21,7 @@ return { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { -- "prettier", -- "stylua", + "elixir", }) end, }, @@ -30,6 +32,7 @@ return { -- add more things to the ensure_installed table protecting against community packs modifying it opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { -- "python", + "elixir", }) end, },