Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tar80/matchwith.nvim
Simpler matchparen and matchit
https://github.com/tar80/matchwith.nvim
neovim-plugin
Last synced: about 2 months ago
JSON representation
Simpler matchparen and matchit
- Host: GitHub
- URL: https://github.com/tar80/matchwith.nvim
- Owner: tar80
- License: apache-2.0
- Created: 2024-04-07T06:51:00.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T05:00:53.000Z (4 months ago)
- Last Synced: 2024-09-16T06:27:38.398Z (4 months ago)
- Topics: neovim-plugin
- Language: Lua
- Homepage:
- Size: 62.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- my-neovim-pluginlist - tar80/matchwith.nvim - commit/tar80/matchwith.nvim) ![](https://img.shields.io/github/commit-activity/y/tar80/matchwith.nvim) (Editing support / matchparen)
README
# matchwith.nvim
matchwith.nvim is a matchparen and matchit alternative plugin.
Provides simpler functionality using treesitter.## Features
Displaying symbols for off-screen match.
![sample](https://github.com/tar80/matchwith.nvim/assets/45842304/82b5a284-f4bc-4c07-838f-dcf77f5bf941)
## Requirements
- Neovim >= 0.10.0
## Installation
- lazy.nvim
```lua:
{
'tar80/matchwith.nvim',
opts = {
...
},
}
```## Configuration
```lua
require('matchwith.config').setup({
debounce_time = 100,
ignore_filetypes = { 'TelescopePrompt', 'cmp-menu' },
ignore_buftypes = {},
jump_key = '%',
indicator = 0,
sign = false,
captures = { 'keyword.function', 'keyword.repeat', 'keyword.conditional', 'punctuation.bracket' },
symbols = { [1] = '↑', [2] = '↓', [3] = '→', [4] = '↗', [5] = '↘', [6] = '←', [7] = '↖', [8] = '↙' },
})
```