mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
feat: Added colorscheme
This commit is contained in:
parent
109669c09b
commit
2e69fb14cf
1 changed files with 28 additions and 0 deletions
28
lua/plugins/colorscheme.lua
Normal file
28
lua/plugins/colorscheme.lua
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
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",
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue