From 6b70074004790ebbc3e563f262016a045e5245d7 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Tue, 12 Jul 2022 09:28:33 +0100
Subject: [PATCH] feat(nvim): show git blame on current line

---
 roles/neovim/files/after/plugin/gitsigns.lua | 1 +
 1 file changed, 1 insertion(+)

diff --git a/roles/neovim/files/after/plugin/gitsigns.lua b/roles/neovim/files/after/plugin/gitsigns.lua
index 3cd84a21..1f4af325 100644
--- a/roles/neovim/files/after/plugin/gitsigns.lua
+++ b/roles/neovim/files/after/plugin/gitsigns.lua
@@ -16,6 +16,7 @@ Group.new("GitSignsChange", c.yellow)
 Group.new("GitSignsDelete", c.red)
 
 gitsigns.setup {
+  current_line_blame = true,
   linehl = false,
   numhl = true,