feat(neojj): add neojj (jujutsu) integration (#187)

This commit is contained in:
Barrett Ruth 2026-03-11 14:02:52 -04:00 committed by GitHub
parent de04381298
commit 0451445966
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 265 additions and 6 deletions

View file

@ -9,7 +9,10 @@ highlighting driven by treesitter.
## Features
- Treesitter syntax highlighting in vim-fugitive, Neogit, and `diff` filetype
- Treesitter syntax highlighting in
[vim-fugitive](https://github.com/tpope/vim-fugitive),
[Neogit](https://github.com/NeogitOrg/neogit), builtin `diff` filetype, and
more!
- Character-level intra-line diff highlighting (with optional
[vscode-diff](https://github.com/esmuellert/codediff.nvim) FFI backend for
word-level accuracy)
@ -58,15 +61,18 @@ luarocks install diffs.nvim
Do not lazy load `diffs.nvim` with `event`, `lazy`, `ft`, `config`, or `keys` to
control loading - `diffs.nvim` lazy-loads itself.
**Q: Does diffs.nvim support vim-fugitive/Neogit/gitsigns?**
**Q: Does diffs.nvim support vim-fugitive/Neogit/neojj/gitsigns?**
Yes. Enable integrations in your config:
```lua
vim.g.diffs = {
fugitive = true,
neogit = true,
gitsigns = true,
integrations = {
fugitive = true,
neogit = true,
neojj = true,
gitsigns = true,
}
}
```