bluloco.nvim icon indicating copy to clipboard operation
bluloco.nvim copied to clipboard

Broken completion colors when switching style

Open uloco opened this issue 1 year ago • 4 comments
trafficstars

image

uloco avatar Feb 06 '24 11:02 uloco

auto-dark mode is not the problem. it appears also when switching manually with :colorscheme bluloco-dark and :colorscheme bluloco-light

uloco avatar Feb 06 '24 12:02 uloco

I recently changed re-did my nvim config using kickstart.nvim as base. Now when I apply the bluloco with the following setup

  "uloco/bluloco.nvim",
  dependencies = {
    "rktjmp/lush.nvim",
  },
  lazy = false,
  priority = 1000,

  config = function()
    require("bluloco").setup({
      style = "auto", -- "auto" | "dark" | "light"
      transparent = true,
      italics = true,
      terminal = vim.fn.has("gui_running") == 1, -- bluoco colors are enabled in gui terminals per default.
    })
  end,
},

The colorscheme doesn't gets applied. Is the above issue related maybe?

guoliang avatar Mar 03 '24 13:03 guoliang

Are you setting the colorscheme after the config is setup? Not sure if this is related...

uloco avatar Mar 03 '24 18:03 uloco

Are you setting the colorscheme after the config is setup? Not sure if this is related...

not related, it was me forgetting to set vim.opt.termguicolors = true

guoliang avatar Mar 03 '24 19:03 guoliang

Having a vim.opt.pumblend greater than 0 causes this issue. I could not find an issue inside the theme regarding this. It's probably a limitation of how the theme is loaded (lush?) Closing for now since I don't know how to fix it in the theme. If you have issues with this, try setting pumblend to 0.

uloco avatar Jun 04 '24 13:06 uloco