Releases: xero/evangelion.nvim
Releases · xero/evangelion.nvim
v2.0.2
v2.0.0
GET BACK IN THE ROBOT SHINJI!
the plugin is now updated with a new lua api. the setup function now takes optional arguments. here's a full example:
{
"xero/evangelion.nvim",
lazy = false,
priority = 1000,
config = function()
require("evangelion").setup({
transparent = true,
overrides = {
["keyword"] = { fg="#00ff00", bg="#000000", gui="underline" },
["@boolean"] = { link = "Special" },
},
})
vim.cmd.colorscheme("evangelion")
end,
}
checkout the README for more details on the possible options and values