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