feat(kanso): add config

This commit is contained in:
Oliver Ladner 2026-09-15 10:25:04 +02:00
commit 449151d06c

View file

@ -3,4 +3,18 @@ return {
"webhooked/kanso.nvim",
lazy = false,
priority = 1000,
config = function()
local k = require("kanso")
k.setup({
transparent = false,
background = {
dark = "ink", -- zen, mist, ink
light = "pearl",
},
foreground = {
dark = "default", -- Use default colors in dark mode
light = "saturated", -- Use higher saturation in light mode
},
})
end,
}