mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-18 00:28:56 +02:00
17 lines
351 B
Lua
17 lines
351 B
Lua
|
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
|
||
|
}
|