Skip to content

Commit

Permalink
feat(plugin): support for Neogit
Browse files Browse the repository at this point in the history
closes #38
  • Loading branch information
miikanissi committed Oct 11, 2024
1 parent ba22197 commit f51988e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lua/modus-themes/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,15 @@ function M.setup()
NeoTreeGitModified = { fg = c.fg_changed }, -- Diff mode: Changed line |diff.txt|
NeoTreeGitDeleted = { fg = c.fg_removed }, -- Diff mode: Deleted line |diff.txt|

-- Neogit
NeogitBranch = { fg = c.magenta },
NeogitRemote = { fg = c.magenta_cooler },
NeogitHunkHeader = { fg = c.fg_main, bg = c.bg_dim },
NeogitHunkHeaderHighlight = { fg = c.blue, bg = c.bg_blue_nuanced },
NeogitDiffContextHighlight = { fg = c.fg_dim, bg = c.bg_dim },
NeogitDiffDeleteHighlight = { link = "DiffDelete" },
NeogitDiffAddHighlight = { link = "DiffAdd" },

-- Fern
FernBranchText = { fg = c.blue },

Expand Down

0 comments on commit f51988e

Please sign in to comment.