nvim-lua.kickstart.nvim/lua/custom/plugins/e-ink.lua

25 lines
1.2 KiB
Lua
Raw Normal View History

2025-03-27 00:18:37 +01:00
return {
2025-03-27 01:30:45 +01:00
'alexxGmZ/e-ink.nvim',
config = function()
2025-04-01 10:57:06 +02:00
-- -- Set background BEFORE applying colorscheme
vim.opt.background = 'dark' -- or 'dark'
2025-03-27 15:00:09 +01:00
-- vim.opt.background = 'light' -- or 'dark'
-- require('e-ink').setup()
2025-04-01 10:57:06 +02:00
-- -- -- Get palette AFTER colorscheme setup
2025-03-27 15:00:09 +01:00
-- local everforest = require('e-ink.palette').everforest()
2025-04-01 10:57:06 +02:00
-- local mono = require('e-ink.palette').mono()
-- -- Target a VALID highlight group
-- vim.api.nvim_set_hl(0, 'CursorColumn', { fg = mono[16] })
-- vim.api.nvim_set_hl(0, 'CursorLine', { fg = mono[16] })
-- vim.api.nvim_set_hl(0, 'Comment', { fg = mono[5] })
-- vim.api.nvim_set_hl(0, 'Function', { fg = everforest.statusline3 })
-- vim.api.nvim_set_hl(0, 'Constant', { fg = everforest.blue2 })
-- vim.api.nvim_set_hl(0, 'String', { fg = everforest.green })
-- vim.api.nvim_set_hl(0, 'Operator', { fg = everforest.orange })
-- vim.api.nvim_set_hl(0, 'Delimiter', { fg = everforest.yellow })
-- vim.api.nvim_set_hl(0, '@keyword.return', { fg = everforest.red })
-- vim.api.nvim_set_hl(0, 'Identifier', { fg = everforest.statusline3 })
-- -- vim.api.nvim_set_hl(0, 'FloatBorder', { fg = '#000000' })
2025-03-27 01:30:45 +01:00
end,
2025-03-27 00:18:37 +01:00
}