diff --git a/.gitconfig b/.gitconfig index 448c4e1..77775e8 100644 --- a/.gitconfig +++ b/.gitconfig @@ -20,11 +20,22 @@ lol = log --graph --decorate --pretty=oneline --abbrev-commit lola = log --graph --decorate --pretty=oneline --abbrev-commit --all ls = ls-files -[diff "odf"] -# add to .git/info/attributes -# *.ods diff=odf -# *.odt diff=odf -# *.odp diff=odf - textconv=odt2txt -[diff "odt"] - textconv=odt2txt + dt=difftool # to have diff with meld +#[diff "odf"] +# textconv=odt2txt +#[diff "odt"] +# textconv=odt2txt +[difftool "meld"] + path = /usr/bin/meld + trustExitCode = false +[difftool] + prompt = false +[diff] + tool = meld +[mergetool "meld"] + path = /usr/bin/meld + trustExitCode = false +[mergetool] + keepBackup = false +[merge] + tool = meld