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
- Host: GitHub
- URL: https://github.com/fluxdiv/overhere
- Owner: fluxdiv
- Created: 2024-04-14T18:25:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-15T04:13:52.000Z (about 2 years ago)
- Last Synced: 2024-12-31T15:17:50.066Z (over 1 year ago)
- Topics: lua, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 723 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# overhere
Make your cursor say "hey I'm over here" when switching between buffers/windows

### 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
})
```