SmiteshP / nvim-navic

Simple winbar/statusline plugin that shows your current code context
Apache License 2.0
1.39k stars 49 forks source link

winbar with color #75

Open menash134 opened 1 year ago

menash134 commented 1 year ago

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?

gegoune commented 1 year ago

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

utilyre commented 1 year ago

Consider using barbecue.nvim.

Here is a minimal config for what you want:

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