sho-87 / kanagawa-paper.nvim

Remixed Kanagawa colourscheme with muted colors. For Neovim.
MIT License
79 stars 2 forks source link

Indent line too dark in mini.indentscope #13

Closed plague-doctor closed 1 month ago

plague-doctor commented 1 month ago

The indent line is way too dark after last update: image

Could you please indicate how to make this line lighter? It became invisible after last update :-(

sho-87 commented 1 month ago

to change the indent color (or any other hl group), you can add something like this to your opts for the plugin:

  {
    "sho-87/kanagawa-paper.nvim",
    lazy = false,
    opts = {
      colors = {
        theme = {
          ui = {
            indent = "#ff0000",
          },
        },
      },
    },
  },

see here for more info: https://github.com/sho-87/kanagawa-paper.nvim/issues/3#issuecomment-2183665367