-- A tool for splitting diffs in Neovim -- A lot of commands in jujutsu allow you to select parts of a diff. -- The tool used to select the diff can be configured via their ui.diff-editor config option. -- To use hunk.nvim add the following to your jujutsu config.toml: -- -- [ui] -- diff-editor = ["nvim", "-c", "DiffEditor $left $right $output"] -- -- https://github.com/julienvincent/hunk.nvim return { "hunk.nvim", lazy = false, after = function() require("hunk").setup({}) end, }