diff options
author | Lee Marlow <[email protected]> | 2021-06-30 10:17:11 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-30 12:17:11 -0400 |
commit | e0fbba47619f5ee56aeacf33a069112e5bd2515d (patch) | |
tree | aba3297026297778433abe58443a3c2c25bd2540 | |
parent | cfe9854c8f2dd083ffbc141fd43f036955f05c9c (diff) |
Use vim-elixir when elixir lang is active (#559)
-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) |