blinds.nvim emphasizes the current window by shading the non-active windows.
Lazy:
{
-- https://github.com/jceb/blinds.nvim
"jceb/blinds.nvim",
-- init = function()
-- vim.g.blinds_guibg = "##969694" -- custom color
-- end,
config = true,
}
Set variable g:blinds_guibg
to the desired color in init.vim
.
Example that will shade the other windows in grey:
let g:blinds_guibg = "#969694"
or via lua:
vim.g.blinds_guibg = "##969694"
neovim version 0.2 and above that supports the
winhighlight
feature.