loctvl842 / monokai-pro.nvim

Monokai Pro theme for Neovim written in Lua, with multiple filters: Pro, Classic, Machine, Octagon, Ristretto, Spectrum
MIT License
439 stars 41 forks source link

Cannot enable cursorcolumn = true with monokai-pro theme #23

Closed morenohernan closed 1 year ago

morenohernan commented 1 year ago

Hi, I've checked the doc and I don't see where to enable the cursorcolumn I already enabled it in my vim editor (astrovim)

morenohernan commented 1 year ago

Never mind found how-to

return {
      "loctvl842/monokai-pro.nvim",
      config = function()
        require("monokai-pro").setup({
          filter = "classic",

        plugins = {
          bufferline = {
            underline_selected = true,
            underline_visible = true,
          },
          indent_blankline = {
            context_highlight = "pro", -- default | pro
            context_start_underline = true,
          },
        },
          override = function(colors)
            return {
                    CursorColumn = {
                      bg = colors.base.dimmed5,
                    },
              }
          end
        })
      end,      
}
Grazfather commented 1 year ago

Why is it that the default cursorcolumn is set to bg? It means that the default basically disables this functionality. Shouldn't it match cursorline?