summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorLee Marlow <[email protected]>2021-06-30 10:17:11 -0600
committerGitHub <[email protected]>2021-06-30 12:17:11 -0400
commite0fbba47619f5ee56aeacf33a069112e5bd2515d (patch)
treeaba3297026297778433abe58443a3c2c25bd2540 /lua
parentcfe9854c8f2dd083ffbc141fd43f036955f05c9c (diff)
Use vim-elixir when elixir lang is active (#559)
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins.lua6
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)