add border color to windows

This commit is contained in:
Bill Cryer 2023-06-21 10:01:42 -04:00
parent a13d5c9076
commit 196ef74108

View file

@ -0,0 +1,19 @@
return {
{
"folke/tokyonight.nvim",
lazy = true,
opts = {
style = "moon",
on_colors = function(colors)
colors.border = colors.purple
end,
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight",
},
},
}