Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/deamondev/yank-highlighter.nvim

Neovim plugin yanked text highlighter
https://github.com/deamondev/yank-highlighter.nvim

neovim neovim-plugin text-highlighting

Last synced: 13 days ago
JSON representation

Neovim plugin yanked text highlighter

Awesome Lists containing this project

README

        

# Yank Highlighter

This is neovim plugin for highlighting yanked text.

## Installation

* [lazy.nvim](https://github.com/folke/lazy.nvim)

```lua
{
"DeamonDev/yank-highlighter.nvim",
lazy = false,
config = function()
require("yank-highlighter").setup()
end
}
```

* [packer.nvim](https://github.com/wbthomason/packer.nvim)

```lua
use {
'DeamonDev/yank-highlighter.nvim',
config = function()
require('yank-highlighter').setup()
end
}
```