From 940fd4b7abee1ced1fca96b694aa803fd6ed00dd Mon Sep 17 00:00:00 2001
From: Micah Halter <micah@mehalter.com>
Date: Mon, 30 Jan 2023 20:20:36 -0500
Subject: [PATCH] fix(heirline): fix `astronvim.get_hlgroup` usage

---
 heirline/colors.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/heirline/colors.lua b/heirline/colors.lua
index e9d6417..887313d 100644
--- a/heirline/colors.lua
+++ b/heirline/colors.lua
@@ -1,5 +1,5 @@
 -- Customize colors for each element each element has a `_fg` and a `_bg`
 return function(colors)
-  colors.git_branch_fg = astronvim.get_hlgroup "Conditional"
+  colors.git_branch_fg = astronvim.get_hlgroup("Conditional").fg
   return colors
 end