summaryrefslogtreecommitdiffstats
path: root/src/handlers/blame.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/handlers/blame.rs')
-rw-r--r--src/handlers/blame.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/handlers/blame.rs b/src/handlers/blame.rs
index ed645c6d..629dc705 100644
--- a/src/handlers/blame.rs
+++ b/src/handlers/blame.rs
@@ -36,7 +36,10 @@ impl<'a> StateMachine<'a> {
{
let is_repeat = previous_commit == Some(blame.commit);
let color = self.get_color(blame.commit, previous_commit, is_repeat);
- let mut style = Style::from_colors(None, color::parse_color(&color, true));
+ let mut style = Style::from_colors(
+ None,
+ color::parse_color(&color, true, self.config.git_config.as_ref()),
+ );
// TODO: This will often be pointlessly updating a key with the
// value it already has. It might be nicer to do this (and
// compute the style) in get_color(), but as things stand the