Skip to content

Commit

Permalink
cyberdream could be a cool scheme one day
Browse files Browse the repository at this point in the history
Needs some refinement though. Will keep an eye on it.
  • Loading branch information
ianchesal committed Dec 26, 2023
1 parent c057228 commit 329fa78
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion nvim/lua/plugins/colorscheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
},
}

0 comments on commit 329fa78

Please sign in to comment.