mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
add border color to windows
This commit is contained in:
parent
a13d5c9076
commit
196ef74108
1 changed files with 19 additions and 0 deletions
19
lua/plugins/colorscheme.lua
Normal file
19
lua/plugins/colorscheme.lua
Normal 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",
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue