Skip to content

Commit

Permalink
Remove colourscheme config moved to cyberdream 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Dec 24, 2023
1 parent e039204 commit 293c551
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions nvim/lua/plugins/colourscheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,18 @@ if vim.fn.has("unix") == 1 then
is_transparent = true
end

if is_transparent then
vim.opt.fillchars:append({
horiz = " ",
horizup = " ",
horizdown = " ",
vert = " ",
vertleft = " ",
vertright = " ",
verthoriz = " ",
eob = " ",
})
end

return {
{
"scottmckendry/cyberdream.nvim",
dev = true,
lazy = false,
priority = 1000,
config = function()
require("cyberdream").setup({
transparent = is_transparent,
italic_comments = true,
hide_fillchars = true,
})
vim.cmd("colorscheme cyberdream")
end,
},
Expand Down

0 comments on commit 293c551

Please sign in to comment.