lambdalisue/vim-gina

Use gina as merge tool

Open

#268 opened on Aug 6, 2020

View on GitHub
 (1 comment) (0 reactions) (0 assignees)Vim Script (28 forks)github user discovery
enhancementhelp wanted

Repository metrics

Stars
 (688 stars)
PR merge metrics
 (PR metrics pending)

Description

Accroding https://www.grzegorowski.com/using-vim-or-neovim-nvim-as-a-git-mergetool, vim can use vim-fugitive as git mergetool by following git config. How to use gina like this?

# define command which will be used when "nvim" is set as a merge tool
[mergetool "nvim"]
  cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
# set "nvim" as tool for merging
[merge]
  tool = nvim
# automatically launch merge tool without displaying a prompt
[mergetool]
  prompt = false

Contributor guide