luisiacc / gruvbox-baby

Gruvbox theme for neovim with full 🎄TreeSitter support.
MIT License
390 stars 28 forks source link

column color missing? #52

Closed mil-ad closed 1 year ago

mil-ad commented 1 year ago

Is hl-columncolor part of the theme? If yes I don't think it's being set in this repo.

luisiacc commented 1 year ago

You mean this ? https://github.com/luisiacc/gruvbox-baby/blob/main/lua/gruvbox-baby/theme.lua#L337

mil-ad commented 1 year ago

mmm, I'm not 100% sure. I mean the rulers you'd get with something like set colorcolumn=81,121

luisiacc commented 1 year ago

yes, that's the one, do you have transparent background?

mil-ad commented 1 year ago

I do

luisiacc commented 1 year ago

when transparent mode is activated the ColorColumn doesn't show, you can do this to apply another color to the color column though, put this on your config somewhere:

local c = require("gruvbox-baby.colors").config()
vim.g.gruvbox_baby_highlights = {
  ColorColumn = { c.comment }, -- can be any color you want
}

You can check out the palette here or in the code