https://github.com/maxmx03/accord.nvim
https://github.com/maxmx03/accord.nvim
accord neovim-plugin nvim-plugin
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxmx03/accord.nvim
- Owner: maxmx03
- License: mit
- Created: 2024-10-26T00:40:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-13T17:19:25.000Z (about 1 year ago)
- Last Synced: 2025-06-10T00:41:47.398Z (7 months ago)
- Topics: accord, neovim-plugin, nvim-plugin
- Language: Lua
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Accord.nvim
Write private comments using Neovim's extmark.
## Installation
`lazy.nvim`
```lua
return {
'maxmx03/accord.nvim',
opts = {
sign_text = '',
sign_hl_group = 'AccordIcon',
}
}
```
`plug`
```vim
Plug 'maxmx03/accord.nvim'
lua << EOF
require 'accord'.setup({
sign_text = '',
sign_hl_group = 'AccordIcon',
})
EOF
```
## Commands
```txt
AccordRecord // add extmark
AccordRemember // restore extmarks
AccordClean // delete extmarks
AccordDelete // delete extmark under the cursor
```
## Highlights
```txt
AccordText
AccordIcon
```
