A plugin to flash the cursor like "beaacon"
https://github.com/DanilaMihailov/beacon.nvim
I already have something like this:
-- https://vi.stackexchange.com/questions/31206
M.flash_cursorline = function()
-- local cursorline_state = vim.opt.cursorline:get()
vim.opt.cursorline = true
vim.cmd([[hi CursorLine guifg=#FFFFFF guibg=#FF9509]])
vim.fn.timer_start(200, function()
vim.cmd([[hi CursorLine guifg=NONE guibg=NONE]])
vim.opt.cursorline = false
end)
end
But it does not appears cool like beacon
you are looking for a plugin that already exists?
you are looking for a plugin that already exists?
From the README of this repo:
A public catalogue of Lua plugins Neovim users would like to see exist.
From beacon.nvim:

oh didn't realize that
I think you're looking for specs.nvim
specs.nvim flashes the cursor on movement, not on demand (i.e. it does not have a where-is-my-cursor feature).
@nkakouros beacon.nvim, a new lua rewrite of beacon, has that feature