From e0fbba47619f5ee56aeacf33a069112e5bd2515d Mon Sep 17 00:00:00 2001 From: Lee Marlow Date: Wed, 30 Jun 2021 10:17:11 -0600 Subject: [PATCH] Use vim-elixir when elixir lang is active (#559) --- lua/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) 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)