theme fixes

This commit is contained in:
2025-06-03 22:57:40 +02:00
parent 9b4a1f350b
commit ce4d61699a
3 changed files with 37 additions and 52 deletions

View File

@ -1,6 +1,7 @@
return {
'rebelot/kanagawa.nvim',
lazy = false,
priority = 1000,
config = function()
require('kanagawa').setup({
compile = false, -- enable compiling the colorscheme
@ -11,7 +12,7 @@ return {
statementStyle = { bold = true },
typeStyle = {},
transparent = false, -- do not set background color
dimInactive = true, -- dim inactive window `:h hl-NormalNC`
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
terminalColors = true, -- define vim.g.terminal_color_{0,17}
colors = {
-- add/modify theme and palette colors
@ -33,7 +34,7 @@ return {
light = 'lotus',
},
})
vim.cmd('colorscheme kanagawa')
require('kanagawa').load('wave')
end,
enabled = true,
}