From b6c5dfa7dbc484c9b60b69d2433467f784d06994 Mon Sep 17 00:00:00 2001 From: Francisco De La Cruz Date: Mon, 17 Jul 2023 18:41:22 +0200 Subject: [PATCH] feat(neogit): update hilights (#545) --- lua/catppuccin/groups/integrations/neogit.lua | 86 ++++++++++++++++++- 1 file changed, 84 insertions(+), 2 deletions(-) diff --git a/lua/catppuccin/groups/integrations/neogit.lua b/lua/catppuccin/groups/integrations/neogit.lua index 08efaaffd..4349af58c 100644 --- a/lua/catppuccin/groups/integrations/neogit.lua +++ b/lua/catppuccin/groups/integrations/neogit.lua @@ -2,8 +2,29 @@ local M = {} function M.get() return { - NeogitBranch = { fg = C.pink }, - NeogitRemote = { fg = C.pink }, + NeogitBranch = { + fg = C.peach, + style = { "bold" }, + }, + NeogitRemote = { + fg = C.green, + style = { "bold" }, + }, + NeogitUnmergedInto = { + link = "Function", + }, + NeogitUnpulledFrom = { + link = "Function", + }, + NeogitObjectId = { + link = "Comment", + }, + NeogitStash = { + link = "Comment", + }, + NeogitRebaseDone = { + link = "Comment", + }, NeogitHunkHeader = { bg = U.darken(C.blue, 0.095, C.base), fg = U.darken(C.blue, 0.5, C.base), @@ -36,6 +57,67 @@ function M.get() bg = U.darken(C.blue, 0.300, C.base), fg = U.lighten(C.blue, 0.800, C.text), }, + NeogitChangeModified = { + fg = C.blue, + style = { "bold" }, + }, + + NeogitChangeAdded = { + fg = C.green, + style = { "bold" }, + }, + NeogitChangeRenamed = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitChangeUpdated = { + fg = C.peach, + style = { "bold" }, + }, + NeogitChangeCopied = { + fg = C.pink, + style = { "bold" }, + }, + NeogitChangeBothModified = { + fg = C.yellow, + style = { "bold" }, + }, + NeogitChangeNewFile = { + fg = C.green, + style = { "bold" }, + }, + NeogitUntrackedfiles = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitUnstagedchanges = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitUnmergedchanges = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitUnpulledchanges = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitRecentcommits = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitStagedchanges = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitStashes = { + fg = C.mauve, + style = { "bold" }, + }, + NeogitRebasing = { + fg = C.mauve, + style = { "bold" }, + }, NeogitNotificationInfo = { fg = C.blue }, NeogitNotificationWarning = { fg = C.yellow }, NeogitNotificationError = { fg = C.red },