neovim/lua/weeheavy/plugins/kanagawa.lua
Oliver Ladner e452f96b64 theme changes
2024-05-14 12:15:00 +02:00

27 lines
454 B
Lua

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,
}