diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..36bab7b --- /dev/null +++ b/lua/plugins/colorscheme.lua @@ -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", + }, + }, +}