Skip to content

Releases: StackInTheWild/headhunter.nvim

v1.3.0

22 Oct 10:35
de8b666

Choose a tag to compare

What's Changed

  • fix: Discard git ls-files output by @dan-woz in #11
  • Support stash conflict markers in headhunter.nvim by @Faria22 in #8
  • Add quickfix listing and improve conflict handling by @Faria22 in #9
  • Always register default keymaps by @Faria22 in #10

New Contributors

Full Changelog: v1.2.0...v1.3.0

v1.2.0

22 Sep 04:23
6a94714

Choose a tag to compare

What's Changed

  • Add register_keymaps flag to optionally disable automatic keymap registration by @Marfien in #7

New Contributors

Full Changelog: v1.1.0...v1.2.0

v1.1.0

19 Sep 07:37
3fda78d

Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1.1.0

v1.0.1

19 Sep 06:35
c6e16e6

Choose a tag to compare

What's Changed

  • fix: Read keymaps from user modified config table by @dan-woz in #1

New Contributors

Full Changelog: v1.0.0...v1.0.1

v1.0.0 - Initial Release

17 Sep 11:13

Choose a tag to compare

Introducing headhunter.nvim, a Neovim plugin to make resolving git merge conflicts faster and easier.

🔹 Features

  • Jump directly to the next conflict with ]g
  • Resolve conflicts with intuitive defaults:
    • <leader>gh → Take HEAD
    • <leader>go → Take origin
    • <leader>gb → Take both
  • Fully customizable keymaps
  • Lightweight, pure Lua — no external dependencies

🔹 Installation (lazy.nvim)

{
  "StackInTheWild/headhunter.nvim",
  config = function()
    require("headhunter").setup()
  end
}