diff --git a/nvim/lua/plugins/colorscheme.lua b/nvim/lua/plugins/colorscheme.lua index a3e0bfa..b36a5f6 100644 --- a/nvim/lua/plugins/colorscheme.lua +++ b/nvim/lua/plugins/colorscheme.lua @@ -20,14 +20,29 @@ return { "folke/tokyonight.nvim", name = "tokyonight", opts = { - style = "night" + style = "night", }, }, + { + "scottmckendry/cyberdream.nvim", + lazy = false, + priority = 1000, + config = function() + require("cyberdream").setup({ + transparent = true, -- enable transparent background + italic_comments = true, -- italicize comments + hide_fillchars = true, -- replace all fillchars with ' ' for the ultimate clean look + }) + -- vim.cmd("colorscheme cyberdream") -- set the colorscheme + end, + }, + { "LazyVim/LazyVim", opts = { colorscheme = "tokyonight-night", + -- colorscheme = "cyberdream", }, }, }