nvim-navic icon indicating copy to clipboard operation
nvim-navic copied to clipboard

winbar with color

Open menash134 opened this issue 2 years ago • 2 comments

Hi,

a) I just need a normal winbar without symbols with fullpathname , b) I just need to change the color of the winbar.

set winbar=%f%M . It works. But I dont know how to change the color.

Could you help me?

menash134 avatar Nov 10 '22 22:11 menash134

Colours are set the same way as for the statusline, so you can read about it here :h statusline and search for highlight.

gegoune avatar Nov 11 '22 00:11 gegoune

Consider using barbecue.nvim.

Here is a minimal config for what you want:

require("barbecue").setup({
  symbols = {
    separator = ">",
  },
  kinds = false,
})

utilyre avatar Nov 18 '22 18:11 utilyre