Skip to content

Commit

Permalink
fix(extensions): correctly name mixed leap/gitsigns extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Jul 18, 2024
1 parent d96290a commit b91d2b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 3 additions & 4 deletions lua/cyberdream/extensions/gitsigns.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ local M = {}
function M.get(opts, t)
opts = opts or {}
local highlights = {
LeapMatch = { fg = t.fg, bg = t.magenta },
LeapLabelPrimary = { fg = t.blue, bg = t.bg, bold = true },
LeapLabelSecondary = { fg = t.green, bg = t.bg },
LeapBackdrop = { fg = t.bgHighlight },
GitSignsAdd = { fg = t.green },
GitSignsChange = { fg = t.orange },
GitSignsDelete = { fg = t.red },
}

return highlights
Expand Down
7 changes: 4 additions & 3 deletions lua/cyberdream/extensions/leap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ local M = {}
function M.get(opts, t)
opts = opts or {}
local highlights = {
GitSignsAdd = { fg = t.green },
GitSignsChange = { fg = t.orange },
GitSignsDelete = { fg = t.red },
LeapMatch = { fg = t.fg, bg = t.magenta },
LeapLabelPrimary = { fg = t.blue, bg = t.bg, bold = true },
LeapLabelSecondary = { fg = t.green, bg = t.bg },
LeapBackdrop = { fg = t.bgHighlight },
}

return highlights
Expand Down

0 comments on commit b91d2b1

Please sign in to comment.