Releases: xero/evangelion.nvim
Releases · xero/evangelion.nvim
v2.1.0
Tip
v2.1.0 you are not alone
theme updates
- fixed telescope selection contrast for @95ych in Issue #3
- combined and updated editor error colors
- updated cmp types bg color for a more consistent look
- fixed stupid angle typo in unit01 color palette
docs
- fix lazy config with all options by @ohdearaugustin in PR #2
- add obsidian theme in PR #4
lualine
- new (better looking) example in the readme
dev branch
- fixed build script with correct template logic
vim branch
- updated to the newest theme
contributors
- @ohdearaugustin made their first contribution! 💚
- everything else by your cyberspace hero @xero
v2.0.2
LUA ARE (NOT) ALONE
- updates to the new lua api to conform to lazy.nvim plugin standards.
- updated the docs to match
- added a lualine theme and an example config
changelog: v2.0.0...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