Neovim-from-scratch icon indicating copy to clipboard operation
Neovim-from-scratch copied to clipboard

Bufferline error Fedora 36

Open pedricm opened this issue 1 year ago • 1 comments

I had 2 errors in my bufferline.lua file.

  1. I don't know why, but nvim was not able to recognize the guifg / guibg, I fixed it by repllacing guifg by fg and guibg by bg.
  2. I have an error in the indicator icon: "'indicator_icon' will be deprecated: It should be changed to indicator and icon specified as indicator.icon, with indicator.style = 'icon' "

pedricm avatar Sep 04 '22 10:09 pedricm

how about you change "indicator_icon" to "indicator"? icon? i just ignore it

brokenbeast avatar Sep 05 '22 17:09 brokenbeast

I use ...

bufferline.setup {
  options = {
    ...
    indicator = {
      icon = "â–Ž",
      style = "icon"
    },
    ...

geberl avatar Oct 09 '22 12:10 geberl