SmiteshP / nvim-navic

Simple winbar/statusline plugin that shows your current code context

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

winbar with color

menash134 opened this issue · 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?

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

Consider using barbecue.nvim.

Here is a minimal config for what you want:

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