Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color column #16

Closed
v4nderstruck opened this issue Apr 27, 2024 · 1 comment · Fixed by #15
Closed

Color column #16

v4nderstruck opened this issue Apr 27, 2024 · 1 comment · Fixed by #15
Assignees

Comments

@v4nderstruck
Copy link

Can you add color column support in a cleanish looking way?

I think currently color column does not work

@scottmckendry
Copy link
Owner

Should be fixed now. If you want to override the color, you can do so in your config. E.g:

{
   "scottmckendry/cyberdream.nvim",
   config = function()
       local colors = require("cyberdream.colors").default -- Import the default cyberdream colors
       require("cyberdream").setup({
           transparent = true,
           italic_comments = true,
           hide_fillchars = true,

           theme = {
               -- Override highlights to your liking :)
               highlights = {
                   ColorColumn = { bg = colors.cyan }, -- hex codes are also supported e.g. bg = "#ff0000"
               },
           },
       })
       vim.cmd("colorscheme cyberdream")
   end,
},

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants