Skip to content

Commit

Permalink
feat(gitgutter): add hl for gitgutter
Browse files Browse the repository at this point in the history
  • Loading branch information
sho-87 committed Jul 15, 2024
1 parent 8858669 commit 5c8095c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lua/kanagawa-paper/highlights/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ function M.setup(colors, opts)
GitSignsChange = { fg = theme.vcs.changed, bg = theme.ui.bg_gutter },
GitSignsDelete = { fg = theme.vcs.removed, bg = theme.ui.bg_gutter },

-- Gitgutter
GitGutterAdd = { link = "GitSignsAdd" },
GitGutterChange = { link = "GitSignsChange" },
GitGutterDelete = { link = "GitSignsDelete" },
GitGutterAddLineNr = { link = "GitSignsAdd" },
GitGutterChangeLineNr = { link = "GitSignsChange" },
GitGutterDeleteLineNr = { link = "GitSignsDelete" },

-- Neogit
NeogitDiffContextHighlight = { bg = theme.diff.change },
NeogitHunkHeader = { fg = theme.syn.fun },
Expand Down

0 comments on commit 5c8095c

Please sign in to comment.