From f51988edfb0dc6826d94d155f5090a01687fd69b Mon Sep 17 00:00:00 2001 From: Miika Nissi Date: Thu, 10 Oct 2024 23:20:00 -0400 Subject: [PATCH] feat(plugin): support for `Neogit` closes #38 --- lua/modus-themes/theme.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/modus-themes/theme.lua b/lua/modus-themes/theme.lua index d3acc9c..5dac3b3 100644 --- a/lua/modus-themes/theme.lua +++ b/lua/modus-themes/theme.lua @@ -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 },