diff --git a/etc/soft/git/gitconfig b/etc/soft/git/gitconfig index 7195480..823b4a8 100644 --- a/etc/soft/git/gitconfig +++ b/etc/soft/git/gitconfig @@ -35,6 +35,12 @@ [gc] writeCommitGraph = true +[blame] + coloring = repeatedLines + +[color "blame"] + repeatedLines = yellow + # ----[ DIFF METHODS ]-------------------------------------------------------- [diff "plist"] @@ -77,6 +83,9 @@ # Исправление последнего коммита ca = commit --amend + # Blame с подсветкой синтаксиса + cblame = !git-cblame + # Список diff-методов для сохранения в .gitattributes diffs = "!grep '\\[diff \"' ~/.gitconfig | cut -d '\"' -f 2 | awk '{ print \"*.\" $0 \" diff=\" $0 }'"