[mini-files] background color #1178
-
Is there a way to change the background colour of the mini-files buffer? I found it quite hard to differentiate the buffers. It took a while until I found the buffer already being there after I triggered the keybinding. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, there is a But more so, this sounds like the color scheme you are using doesn't show floating windows with the distinctive background color. I'd recommend adjusting |
Beta Was this translation helpful? Give feedback.
Yes, there is a
MiniFilesNormal
highlight group. You can modify it as any other highlight group. For example, with the following Lua call:vim.api.nvim_set_hl(0, 'MiniFilesNormal', { bg = '#111111' })
.But more so, this sounds like the color scheme you are using doesn't show floating windows with the distinctive background color. I'd recommend adjusting
NormalFloat
highlight group.