mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-18 08:39:06 +02:00
many theme changes
This commit is contained in:
parent
2730fd29b8
commit
b9199efb56
9 changed files with 102 additions and 35 deletions
|
@ -1,19 +1,19 @@
|
|||
return {
|
||||
'alexxGmZ/e-ink.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
-- Set background BEFORE applying colorscheme
|
||||
vim.opt.background = 'light' -- or 'dark'
|
||||
local mono = require('e-ink.palette').mono()
|
||||
vim.api.nvim_set_hl(0, 'Cursor', { bg = mono[16] })
|
||||
vim.api.nvim_set_hl(0, 'Cursor', { fg = mono[1], bg = mono[16] })
|
||||
require('e-ink').setup()
|
||||
vim.cmd.colorscheme 'e-ink'
|
||||
-- vim.opt.background = 'light' -- or 'dark'
|
||||
-- local mono = require('e-ink.palette').mono()
|
||||
-- vim.api.nvim_set_hl(0, 'Cursor', { bg = mono[16] })
|
||||
-- vim.api.nvim_set_hl(0, 'Cursor', { fg = mono[1], bg = mono[16] })
|
||||
-- require('e-ink').setup()
|
||||
|
||||
-- Get palette AFTER colorscheme setup
|
||||
local everforest = require('e-ink.palette').everforest()
|
||||
-- local everforest = require('e-ink.palette').everforest()
|
||||
|
||||
-- Target a VALID highlight group
|
||||
-- vim.api.nvim_set_hl(0, 'Comment', { fg = everforest.purple })
|
||||
-- vim.api.nvim_set_hl(0, 'CursorColumn', { fg = mono[16] })
|
||||
-- vim.api.nvim_set_hl(0, 'CursorLine', { fg = mono[16] })
|
||||
end,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue