[neovim] Match float windows background color

This commit is contained in:
2026-04-08 19:32:02 +02:00
parent 82b3eecc11
commit a14d8aaf55

View File

@@ -190,6 +190,9 @@ vim.cmd.packadd("nvim.difftool")
-- [[ PLUGINS CONFIGURATIONS ]] --
cmd.colorscheme("gruvbit")
local bg_color = vim.api.nvim_get_hl(0, {name = "Normal", link = false}).bg
cmd.highlight(string.format("Float guifg=NONE guibg=#%06x gui=NONE", bg_color))
cmd.highlight(string.format("NormalFloat guifg=NONE guibg=#%06x gui=NONE", bg_color))
require("mini.pick").setup()