akinsho / akinsho/bufferline.nvim

[Feature Request]: Set filetype icon color to "gray" for inactive buffers

Aperta
#1,045 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub
enhancement
Lingua principale
Lua
Stelle
4.4k
Fork
240
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

### What?

I use below configs for bufferline, I think it is worth to merge into this plugin:

```lua
require("bufferline").setup({
get_element_icon = function(element)
local current_bufpath = vim.api.nvim_buf_get_name(0)
local icon_text, icon_color =
require("nvim-web-devicons").get_icon_by_filetype(element.filetype, { default = false })
if
str.not_empty(current_bufpath)
and str.not_empty(element.path)
and path.normalize(current_bufpath, { expand = true, double_backslash = true })
== path.normalize(element.path, { expand = true, double_backslash = true })
then
return icon_text, icon_color
else
return icon_text, "Comment"
end
end,
})
```

### Why?

It set a "grey" color (with "Comment" hl group) for inactive buffer's filetype icon, it looks better:

Image

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.