mirror of https://github.com/LazyVim/starter
20 lines
279 B
Lua
20 lines
279 B
Lua
|
return {
|
||
|
{
|
||
|
"folke/tokyonight.nvim",
|
||
|
lazy = true,
|
||
|
opts = {
|
||
|
style = "moon",
|
||
|
on_colors = function(colors)
|
||
|
colors.border = colors.purple
|
||
|
end,
|
||
|
},
|
||
|
},
|
||
|
|
||
|
{
|
||
|
"LazyVim/LazyVim",
|
||
|
opts = {
|
||
|
colorscheme = "tokyonight",
|
||
|
},
|
||
|
},
|
||
|
}
|