diff --git a/lua/weeheavy/plugins/theme/kanso.lua b/lua/weeheavy/plugins/theme/kanso.lua index 978645d..ba972be 100644 --- a/lua/weeheavy/plugins/theme/kanso.lua +++ b/lua/weeheavy/plugins/theme/kanso.lua @@ -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, }