Skip to content

Commit

Permalink
Fix gitsings colors
Browse files Browse the repository at this point in the history
Shatur committed May 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent e03beac commit d7a2b75
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lua/ayu/init.lua
Original file line number Diff line number Diff line change
@@ -93,6 +93,9 @@ local function set_groups()
Conceal = { fg = colors.comment },
CursorLineConceal = { fg = colors.guide_normal, bg = colors.line },

Added = { fg = colors.vcs_added },
Removed = { fg = colors.vcs_removed },
Changed = { fg = colors.vcs_modified },
DiffAdd = { bg = colors.vcs_added_bg },
DiffAdded = { fg = colors.vcs_added },
DiffDelete = { bg = colors.vcs_removed_bg },
@@ -148,11 +151,6 @@ local function set_groups()
-- TreesitterContext.
TreesitterContext = { bg = colors.selection_inactive },

-- Gitsigns.
GitSignsAddLn = { fg = colors.vcs_added },
GitSignsDeleteLn = { fg = colors.vcs_removed },
GitSignsChange = { fg = colors.vcs_modified },

-- Telescope.
TelescopePromptBorder = { fg = colors.accent },

0 comments on commit d7a2b75

Please sign in to comment.