mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 20:41:04 +00:00
28 lines
559 B
Lua
28 lines
559 B
Lua
return {
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
opts = {
|
|
transparent = true,
|
|
style = "night",
|
|
styles = {
|
|
sidebars = "transparent",
|
|
floats = "transparent",
|
|
comments = { italic = true },
|
|
keywords = { italic = true },
|
|
},
|
|
on_highlights = function(hl, colors)
|
|
hl.LineNr = { bg = "none", fg = "#999999" }
|
|
hl.CursorLineNr = { fg = "#ffffff" }
|
|
end,
|
|
},
|
|
},
|
|
{
|
|
"Mofiqul/vscode.nvim",
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
}
|