Skip to content

Commit

Permalink
cyberdream: redux
Browse files Browse the repository at this point in the history
Theme designer scottmckendry contacted me about my commit where I undid
using cyberdream: scottmckendry/cyberdream.nvim#4

Our conversation led to some tweaks and this feels more inline with my
Tokyo Night stuff but with his colour vision. Dig it.

Will run it for a few weeks and see how it goes.
  • Loading branch information
ianchesal committed Dec 28, 2023
1 parent 5d0972d commit c32f9d2
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions nvim/lua/plugins/colorscheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,30 @@ return {
priority = 1000,
config = function()
require("cyberdream").setup({
transparent = true, -- enable transparent background
italic_comments = true, -- italicize comments
transparent = false, -- enable transparent background
italic_comments = false, -- italicize comments
hide_fillchars = true, -- replace all fillchars with ' ' for the ultimate clean look
borderless_telescope = false, -- remove borders from telescope windows
theme = {
colors = {
-- Use a slightly darker green
green = "#06c258",
},

highlights = {
-- Set indent scope to blue (instead of pink)
MiniIndentScopeSymbol = { fg = "#5ea1ff" },
},
},
})
-- vim.cmd("colorscheme cyberdream") -- set the colorscheme
end,
},

{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight-night",
-- colorscheme = "cyberdream",
-- colorscheme = "tokyonight-night",
colorscheme = "cyberdream",
},
},
}

0 comments on commit c32f9d2

Please sign in to comment.