From 2e69fb14cf2b12207a716962f06b589a9adec5cd Mon Sep 17 00:00:00 2001 From: Binciu Viorel Date: Sat, 25 May 2024 12:36:10 +0300 Subject: [PATCH] feat: Added colorscheme --- lua/plugins/colorscheme.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 lua/plugins/colorscheme.lua 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", + }, + }, +}