blinds.nvim emphasizes the current window by shading the non-active windows.
Lazy:
{
-- https://github.com/jceb/blinds.nvim
"jceb/blinds.nvim",
config = true,
opts = {
-- see default configuration
}
}
Place any value that shall customized inside opts
:
{
-- background color
guibg = "#969694",
-- Limit blinds to certain file types, "*" matches all file types.
ft = { "*" },
-- Exclude certain file types from blinds.
excluded = { "aerial" },
}
neovim version 0.2 and above that supports the
winhighlight
feature.