https://github.com/nvimdev/cwordmini.nvim
neovim highlight all cursor words in buffer
https://github.com/nvimdev/cwordmini.nvim
Last synced: 7 months ago
JSON representation
neovim highlight all cursor words in buffer
- Host: GitHub
- URL: https://github.com/nvimdev/cwordmini.nvim
- Owner: nvimdev
- License: mit
- Created: 2024-06-08T05:13:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-08T12:54:49.000Z (over 1 year ago)
- Last Synced: 2025-04-10T16:44:42.629Z (9 months ago)
- Language: Lua
- Size: 9.77 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cwordmini.nvim
A very minimal less than 80 lines plugin used for highlight all cursor words on
buffer. support multiple-bytes characters, no any autocmd event binding.
Notic it works on neovim redraw circly, so if not trigger redraw this plugin will
not works correctly.
## Usage
```lua
require('cwordmini').setup() -- use default config or setup({exclude = {..} })
```
Option in setup param table just `exclude` filetype or buftype list table
Please config highlight group 'CursorWord' after setup or in your colorscheme
## Licenses MIT