diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/plugins.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 1d1a1628..4899d985 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -380,4 +380,10 @@ return require("packer").startup(function(use) -- Rust tools -- TODO: use lazy loading maybe? use {"simrat39/rust-tools.nvim", disable = not O.lang.rust.active} + + -- Elixir + use {"elixir-editors/vim-elixir", + ft = {"elixir", "eelixir"}, + disable = not O.lang.elixir.active + } end) |