theme changes

This commit is contained in:
Oliver Ladner 2024-05-14 12:15:00 +02:00
commit e452f96b64
3 changed files with 86 additions and 1 deletions

View file

@ -0,0 +1,27 @@
return {
"rebelot/kanagawa.nvim",
tag = "master",
lazy = false,
priority = 1000,
opts = {},
config = function()
require("kanagawa").setup({
colors = {
palette = {
-- change all usages of these colors
sumiInk0 = "#000000",
fujiWhite = "#FFFFFF",
},
theme = {
all = {
ui = {
bg_gutter = "none",
--bg_visual = "#8a9a7b",
bg_visual = "#938056",
},
},
},
},
})
end,
}