Skip to content

Instantly share code, notes, and snippets.

[merge]
tool = kdiff3noauto
[mergetool "kdiff3noauto"]
trustexitcode = false
cmd = kdiff3 \
--L1 "$MERGED (Base)" --L2 "$MERGED (Local)" --L3 "$MERGED (Remote)" \
-o "$MERGED" "$BASE" "$LOCAL" "$REMOTE"
@jakar
jakar / gist:3372724
Created August 16, 2012 19:07
vim: set wildignorecase (comment on http://stackoverflow.com/a/4780444/320418)
if exists("&wildignorecase")
set wildignorecase
endif