An open API service indexing awesome lists of open source software.

https://github.com/fluxdiv/overhere

Helps you find your cursor when switching buffers/windows in Neovim
https://github.com/fluxdiv/overhere

lua neovim neovim-plugin

Last synced: about 2 months ago
JSON representation

Helps you find your cursor when switching buffers/windows in Neovim

Awesome Lists containing this project

README

          

# overhere

Make your cursor say "hey I'm over here" when switching between buffers/windows

![overhere gif](overhere_gif.gif)

### Installation with [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
'grokkt/overhere',
config = function()
require('overhere').overhere({
hl_opts = {
bg = "#FF0000"
}
})
end
},
```

### Example/default options
```lua
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
})
```