diff options
author | Marco Martinelli <smartinellimarco@gmail.com> | 2023-09-11 16:10:14 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-11 21:10:14 +0200 |
commit | 8ffba36ef1aafb2d8a8f81d45908d61e0703c3be (patch) | |
tree | fc8d9dd38f33bcf1bff9445e5c7522bb15b7bd14 /lua | |
parent | 778532e164aea273f6c8dab192b0fe918303871e (diff) |
Add highlight group for git blame. (#27)
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/groups/git.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/groups/git.lua b/lua/no-clown-fiesta/groups/git.lua index 66323d2..856147c 100644 --- a/lua/no-clown-fiesta/groups/git.lua +++ b/lua/no-clown-fiesta/groups/git.lua @@ -8,6 +8,7 @@ function M.highlight(palette, opts) GitSignsAdd = { fg = palette.sign_add }, GitSignsChange = { fg = palette.sign_change }, GitSignsDelete = { fg = palette.sign_delete }, + GitSignsCurrentLineBlame = { fg = palette.gray } } end |