Use vim-elixir when elixir lang is active (#559)

This commit is contained in:
Lee Marlow 2021-06-30 10:17:11 -06:00 committed by GitHub
parent cfe9854c8f
commit e0fbba4761
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)