Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 781 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 781 Bytes

Timed Highlight Plugin for Neovim

Overview

Timed Highlight is a Neovim plugin that provides a convenient way to highlight search results for a specified duration. This automates the removal of highlighting after a search.

⚡️In action

Temporary Highlighting when you need it

  • Highlight duration can be customized

📦 Installation

Install the plugin using your preferred package manager. Here's an example using lazy.nvim:

local function timed_highlight_config()
    require("timed-highlight").setup({
        highlight_timeout_ms = 2000
    })
end

return {
    "sahlte/timed-highlight.nvim", config = timed_highlight_config
}