Skip to content

Releases: xero/evangelion.nvim

v2.0.2

06 Sep 22:10
ba4f7fc
Compare
Choose a tag to compare

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

04 Sep 04:11
b81a349
Compare
Choose a tag to compare

IMG_0594

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

v1.0.0

01 Sep 14:13
931d641
Compare
Choose a tag to compare

GET IN THE ROBOT SHINJI!!!