Skip to content

Commit

Permalink
feat(neogit): update highlights (#545) (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
fdelacruz authored Aug 6, 2023
1 parent 057c34f commit 371430f
Showing 1 changed file with 84 additions and 2 deletions.
86 changes: 84 additions & 2 deletions lua/catppuccin/groups/integrations/neogit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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 },
Expand Down

0 comments on commit 371430f

Please sign in to comment.