/delay-cursorline.nvim

Simple plugin for neovim to delay highlighting of cursor line when line is moved.

Primary LanguageLuaMIT LicenseMIT

delay-cursorline.nvim

Simple plugin for neovim to delay highlighting of cursor line when line is moved.

Install

Install with packer.nvim

use 'go-toh/delay-cursorline'

Usage

require('delay-cursorline').setup()

Configuration

-- Default setting
--
-- delay = {
--   enable = true,
--   time = 500,
-- }

require('delay-cursorline').setup {
  delay = {
    -- Set delay time.
    time = 1000,
  }
}