From 49009fe5a4f679a25f18da7f71eb50f439e62524 Mon Sep 17 00:00:00 2001 From: xero Date: Tue, 3 Sep 2024 23:57:39 -0400 Subject: [PATCH] =?UTF-8?q?docs(README):=20=F0=9D=99=82=F0=9D=99=80?= =?UTF-8?q?=F0=9D=99=8F=20=F0=9D=99=84=F0=9D=99=89=20=F0=9D=99=8F?= =?UTF-8?q?=F0=9D=99=83=F0=9D=99=80=20=F0=9D=99=8D=F0=9D=99=8A=F0=9D=98=BD?= =?UTF-8?q?=F0=9D=99=8A=F0=9D=99=8F=20=F0=9D=99=8E=F0=9D=99=83=F0=9D=99=84?= =?UTF-8?q?=F0=9D=99=89=F0=9D=99=85=F0=9D=99=84!=20=F0=9F=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 41 +++++++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index fdc7506..0a0f728 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ a colorscheme for `{neo,}vim` inspired by neon genesis evangelion. -supports a ton of languages, diagnostics, cmp, fzf, gitsigns, lazy, lsp, lualine, luasnips, mason, nerdtree, telescope, treesitter, trouble, which-key, & more. +support for tons of languages, diagnostics, cmp, fzf, gitsigns, indents, lazy, lsp, lualine, luasnips, mason, nerdtree, telescope, treesitter, trouble, which-key, & more. ![theme preview](https://raw.githubusercontent.com/xero/evangelion.nvim/previews/eva-01.png) @@ -15,13 +15,13 @@ this theme is available in a classic vim compatible format, optimized lua, and a * [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 +* [dev](https://github.com/xero/evangelion.nvim/tree/dev) - development version -### tldr +#### tl;dr -| neovim | classic vim | -| ------ | ------ | -| for **neovim** use `main` branch | for **vim** use the `vim` branch +for **neovim** use `main` branch + +for **classic vim** use the `vim` branch ## installation @@ -50,25 +50,30 @@ using `lazy` _(with all options)_ require("evangelion").setup({ transparent = true, overrides = { - ["keyword"] = { fg="#00ff00", bg="#000000", gui="underline" }, + keyword = { fg = "#00ff00", bg = "#222222", undercurl = "true" }, + ["@boolean"] = { link = "Special" }, }, }) vim.cmd.colorscheme("evangelion") end, } ``` -using `plug` - -```vim -Plug('xero/evangelion.nvim', { branch = 'vim' }') -colorscheme evangelion -``` using `packer` ```lua -use {"xero/evangelion.nvim"} -vim.cmd("colorscheme evangelion") +use { + "xero/evangelion.nvim", + config = function() require("evangelion").setup{} end, + run = ":colorscheme evangelion" +} +``` + +using `plug` + +```vim +Plug("xero/evangelion.nvim", { branch = "vim" }) +colorscheme evangelion ``` ## options @@ -94,9 +99,9 @@ first, checkout the [dev](https://github.com/xero/evangelion.nvim/tree/dev) bran this theme has been ported to a few different apps, and are included in the `extras` directory: -* `evangelion.Xresources` - colors for [xclients](https://wiki.archlinux.org/title/x_resources) (e.g. unix terminal emulators) -* `evangelion.zsh` - colors for [zsh](https://zsh.org) -* `evangelion.js` - colors for [blink shell](https://blink.sh) +* [evangelion.Xresources](extras/evangelion.Xresources) - colors for [xclients](https://wiki.archlinux.org/title/x_resources) (e.g. unix terminal emulators) +* [evangelion.zsh](extras/evangelion.zsh) - colors for [zsh](https://zsh.org) +* [evangelion.js](extras/evangelion.js) - colors for [blink shell](https://blink.sh) more on the way, and pr's for others are welcomed!