mirror of
https://github.com/NotAShelf/specs.nvim.git
synced 2024-11-01 19:11:16 +00:00
1 KiB
1 KiB
specs.nvim 👓
Show where your cursor moves when jumping large distances (e.g between windows). Fast and lightweight, written completely in Lua. WIP.
New: added option for custom highlighting for popup:
Install
Using packer.nvim:
use {'edluffy/specs.nvim'}
Using vim-plug:
Plug 'edluffy/specs.nvim'
Usage
If you are using init.vim instead of init.lua, remember to wrap block below with lua << EOF
and EOF
require('specs').setup{
show_jumps = true,
min_jump = 30,
popup = {
delay_ms = 0,
inc_ms = 10,
blend = 10,
width = 10,
winhl = "PMenu",
fader = require('specs').linear_fader,
resizer = require('specs').shrink_resizer
}
}