image

CI Coverage Status Gitter

Get Started

Install it (the package is called "git-delta" in most package managers, but the executable is just delta) and add this to your ~/.gitconfig:

```gitconfig [core] pager = delta

[interactive] diffFilter = delta --color-only

[delta] navigate = true # use n and N to move between diff sections light = false # set to true if you're in a terminal w/ a light background color (e.g. the default macOS terminal)

[merge] conflictstyle = diff3

[diff] colorMoved = default ```

Delta has many features and is very customizable; please see the user manual.

Features

A syntax-highlighting pager for git, diff, and grep output

Code evolves, and we all spend time studying diffs. Delta aims to make this both efficient and enjoyable: it allows you to make extensive changes to the layout and styling of diffs, as well as allowing you to stay arbitrarily close to the default git/diff output.

image
delta with line-numbers activated
image
delta with side-by-side and line-numbers activated

Here's what git show can look like with git configured to use delta:


image image
"Dracula" theme "GitHub" theme



Syntax-highlighting themes

All the syntax-highlighting color themes that are available with bat are available with delta:


image image
delta --show-syntax-themes --dark delta --show-syntax-themes --light


Side-by-side view

[[User manual](https://dandavison.github.io/delta/side-by-side-view.html)]

gitconfig [delta] side-by-side = true

By default, side-by-side view has line-numbers activated, and has syntax highlighting in both the left and right panels: [[config](#side-by-side-view-1)]

image

Side-by-side view wraps long lines automatically:

image

Line numbers

[[User manual](https://dandavison.github.io/delta/line-numbers.html)]

gitconfig [delta] line-numbers = true

image

Merge conflicts

[[User manual](https://dandavison.github.io/delta/merge-conflicts.html)]

image

Git blame

[[User manual](https://dandavison.github.io/delta/git-blame.html)]

image

Installation and usage

Please see the user manual and delta --help.