Make your cursor say "hey I'm over here" when switching between buffers/windows
Installation with lazy.nvim
{
'grokkt/overhere',
config = function()
require('overhere').overhere({
hl_opts = {
bg = "#FF0000"
}
})
end
},require('overhere').overhere({
hl_opts = {
fg = nil, -- or hex color string ex "#FF0000"
bg = "#004a3c",
bold = false,
italic = false,
underline = false
},
win_enter = true,
buf_enter = true,
buf_win_enter = true,
clear_after_ms = 250
})