add border color to windows

pull/76/head
Bill Cryer 2023-06-21 10:01:42 -04:00
parent a13d5c9076
commit 196ef74108
1 changed files with 19 additions and 0 deletions

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