Skip to content

v2.0.0

Compare
Choose a tag to compare
@xero xero released this 04 Sep 04:11
· 16 commits to main since this release
b81a349

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