Show git blame as a gutter.
You can customize the gutter colors by adding the following lines to your
stylesheet (~/.atom/styles.less
).
atom-text-editor::shadow .blame-gutter {
.hash { color: white; }
.date { color: white; }
.author { color: white; }
}
To use a custom repository browser (like gitweb), set an URL template in the git config file:
git config --local --add atom-blame.browser-url "http://example.com/gitweb/?p=my_repo.git;a=commit;h={hash}"
{hash}
will be replaced with the actual hash of selected commit.
Todo:
- Handle Folding right