-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BufferCurrent Icon bg #608
Comments
I put together a minimal config and wasn't able to reproduce: --[[ minimal.lua ]]
local lazy = vim.fn.stdpath('data') .. '/lazy/'
vim.opt.rtp:prepend {
lazy .. 'barbar.nvim',
lazy .. 'nvim-web-devicons',
}
vim.g.barbar_auto_setup = false
require('barbar').setup {}
vim.api.nvim_create_autocmd('ColorScheme', {
callback = function()
vim.cmd.highlight { 'BufferCurrent', 'guibg=#00FF00' }
end,
})
vim.api.nvim_create_autocmd('VimEnter', {
callback = vim.schedule_wrap(function()
vim.cmd.colorscheme 'habamax'
end),
}) With this, the icons for the current buffer inherit from |
Can your share your config? Or edit the minimal config to show the behavior? Sorry for the trouble 😅 |
I tried installing different highlights in a minimal config, but I couldn't reproduce it. |
Note to self: try reproducing in minimal config with https://github.com/NvChad/base46 |
Does moving the barbar groups from |
No, this is only for overriding exist NvChad integrations
|
Description
Looks like devicons have background from Normal highlight, instead of BufferDefaultCurrent
Screenshots
First - current, second - visible
https://imgur.com/a/kL06BvO
Informations
Neovim version: 0.10
The text was updated successfully, but these errors were encountered: