starter/lua/plugins/colorscheme.lua
2024-05-25 12:36:10 +03:00

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