Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/deamondev/yank-highlighter.nvim
- Owner: DeamonDev
- License: mit
- Created: 2024-09-15T17:04:17.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-09-15T17:34:40.000Z (2 months ago)
- Last Synced: 2024-11-02T21:03:06.230Z (13 days ago)
- Topics: neovim, neovim-plugin, text-highlighting
- Language: Lua
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
```