Skip to content

Commit

Permalink
feat(v2.0.0): 𝕿𝖔𝖙𝖆𝖑 𝕽𝖊𝖜𝖗𝖎𝖙𝖊
Browse files Browse the repository at this point in the history
  • Loading branch information
xero committed Sep 3, 2024
1 parent c67ca29 commit 91c37af
Show file tree
Hide file tree
Showing 8 changed files with 693 additions and 1,089 deletions.
33 changes: 22 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,40 @@ https://github.com/xero/evangelion.nvim

this theme is available in a classic vim compatible format, optimized lua, and a development lua version.

* [main](https://github.com/xero/evangelion.nvim/tree/main) - optimized versions
* [main](https://github.com/xero/evangelion.nvim/tree/main) - optimized lua version
* [vim](https://github.com/xero/evangelion.nvim/tree/vim) - classic vim version
* [dev](https://github.com/xero/evangelion.nvim/tree/dev) - development versions

unless you plan to customize the theme, just use `main`.
### tldr

for **neovim** use `main` branch

for **vim** use the `vim` branch

## installation

using `lazy`

```lua
{
"xero/evangelion.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd("colorscheme evangelion")
end,

return {
"xero/evangelion.nvim",
dev = true,
lazy = false,
priority = 1000,
config = function()
require("evangelion").setup({
transparent = false,
})
vim.cmd.colorscheme("evangelion")
end,
}
```

using `plug`

```vim
Plug 'xero/evangelion.nvim'
Plug('xero/evangelion.nvim', { branch = 'vim' }')
colorscheme evangelion
```

Expand All @@ -47,7 +57,8 @@ vim.cmd("colorscheme evangelion")

## usage

set the color scheme with the builtin command `:colorscheme`
set the color scheme with the builtin command `:> [!CAUTION]
> olorscheme`
## customization

Expand Down
Loading

0 comments on commit 91c37af

Please sign in to comment.