👓 A fast and lightweight Neovim lua plugin to keep an eye on where your cursor has jumped.
Find a file
2021-03-15 02:46:07 +00:00
lua/specs New features: pulse fader, empty resizer 2021-03-15 02:46:07 +00:00
plugin Add user options + popup on cursor jump 2021-03-14 19:18:18 +00:00
README.md Update README.md 2021-03-14 19:34:19 +00:00

specs.nvim 👓

Specs.nvim - show where your cursor moves when jumping large distances (e.g between windows). Fast and lightweight, written completely in Lua.

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,
        fader = require('specs').linear_fader,
        resizer = require('specs').shrink_resizer
    }
}