fix(heirline): fix `astronvim.get_hlgroup` usage

This commit is contained in:
Micah Halter 2023-01-30 20:20:36 -05:00
parent 5a93e3dd9c
commit 940fd4b7ab
No known key found for this signature in database
GPG Key ID: 4224A6EA9A8CAAA8
1 changed files with 1 additions and 1 deletions

View File

@ -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