added e-ink theme

This commit is contained in:
Tawfeeq 2025-03-27 00:18:37 +01:00
parent 109c04d4f7
commit f22df9bbf7
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
return {
"alexxGmZ/e-ink.nvim",
priority = 1000,
config = function ()
require("e-ink").setup()
vim.cmd.colorscheme "e-ink"
-- choose light mode or dark mode
-- vim.opt.background = "dark"
vim.opt.background = "light"
--
-- or do
-- :set background=dark
-- :set background=light
end
}