Compare commits

..

No commits in common. "main" and "canary" have entirely different histories.

View file

@ -462,7 +462,6 @@ local function set_highlights()
-- mvllow/modes.nvim -- mvllow/modes.nvim
ModesCopy = { bg = palette.gold }, ModesCopy = { bg = palette.gold },
ModesDelete = { bg = palette.love }, ModesDelete = { bg = palette.love },
ModesFormat = { bg = palette.rose },
ModesInsert = { bg = palette.foam }, ModesInsert = { bg = palette.foam },
ModesReplace = { bg = palette.pine }, ModesReplace = { bg = palette.pine },
ModesVisual = { bg = palette.iris }, ModesVisual = { bg = palette.iris },
@ -962,8 +961,6 @@ local function set_highlights()
GrugFarInputPlaceholder = { link = "Comment" }, GrugFarInputPlaceholder = { link = "Comment" },
GrugFarResultsActionMessage = { fg = palette.foam }, GrugFarResultsActionMessage = { fg = palette.foam },
GrugFarResultsChangeIndicator = { fg = groups.git_change }, GrugFarResultsChangeIndicator = { fg = groups.git_change },
GrugFarResultsRemoveIndicator = { fg = groups.git_delete },
GrugFarResultsAddIndicator = { fg = groups.git_add },
GrugFarResultsHeader = { fg = palette.pine }, GrugFarResultsHeader = { fg = palette.pine },
GrugFarResultsLineNo = { fg = palette.iris }, GrugFarResultsLineNo = { fg = palette.iris },
GrugFarResultsLineColumn = { link = "GrugFarResultsLineNo" }, GrugFarResultsLineColumn = { link = "GrugFarResultsLineNo" },
@ -978,8 +975,6 @@ local function set_highlights()
AvanteReversedSubtitle = { fg = palette.foam }, AvanteReversedSubtitle = { fg = palette.foam },
AvanteThirdTitle = { fg = palette.highlight_med, bg = palette.iris }, AvanteThirdTitle = { fg = palette.highlight_med, bg = palette.iris },
AvanteReversedThirdTitle = { fg = palette.iris }, AvanteReversedThirdTitle = { fg = palette.iris },
AvantePromptInput = { fg = palette.text, bg = groups.panel },
AvantePromptInputBorder = { fg = groups.border },
-- Saghen/blink.cmp -- Saghen/blink.cmp
BlinkCmpDoc = { bg = palette.highlight_low }, BlinkCmpDoc = { bg = palette.highlight_low },
@ -1034,39 +1029,6 @@ local function set_highlights()
Sneak = { fg = palette.base, bg = palette.love }, Sneak = { fg = palette.base, bg = palette.love },
SneakCurrent = { link = "StatusLineTerm" }, SneakCurrent = { link = "StatusLineTerm" },
SneakScope = { link = "IncSearch" }, SneakScope = { link = "IncSearch" },
-- sindrets/diffview.nvim
DiffviewPrimary = { fg = palette.pine },
DiffviewSecondary = { fg = palette.foam },
DiffviewNormal = { fg = palette.text, bg = palette.surface },
DiffviewWinSeparator = { fg = palette.text, bg = palette.surface },
DiffviewFilePanelTitle = { fg = palette.foam, bold = styles.bold },
DiffviewFilePanelCounter = { fg = palette.rose },
DiffviewFilePanelRootPath = { fg = palette.foam, bold = styles.bold },
DiffviewFilePanelFileName = { fg = palette.text },
DiffviewFilePanelSelected = { fg = palette.gold },
DiffviewFilePanelPath = { link = "Comment" },
DiffviewFilePanelInsertions = { fg = groups.git_add },
DiffviewFilePanelDeletions = { fg = groups.git_delete },
DiffviewFilePanelConflicts = { fg = groups.git_merge },
DiffviewFolderName = { fg = palette.foam, bold = styles.bold },
DiffviewFolderSign = { fg = palette.subtle },
DiffviewHash = { fg = palette.rose },
DiffviewReference = { fg = palette.foam, bold = styles.bold },
DiffviewReflogSelector = { fg = palette.rose },
DiffviewStatusAdded = { fg = groups.git_add },
DiffviewStatusUntracked = { fg = groups.untracked },
DiffviewStatusModified = { fg = groups.git_change },
DiffviewStatusRenamed = { fg = groups.git_rename },
DiffviewStatusCopied = { fg = groups.untracked },
DiffviewStatusTypeChange = { fg = groups.git_change },
DiffviewStatusUnmerged = { fg = groups.git_change },
DiffviewStatusUnknown = { fg = groups.git_delete },
DiffviewStatusDeleted = { fg = groups.git_delete },
DiffviewStatusBroken = { fg = groups.git_delete },
DiffviewStatusIgnored = { fg = groups.git_ignore },
} }
local transparency_highlights = { local transparency_highlights = {
DiagnosticVirtualTextError = { fg = groups.error }, DiagnosticVirtualTextError = { fg = groups.error },
@ -1175,10 +1137,6 @@ local function set_highlights()
highlight.blend = nil highlight.blend = nil
highlight.blend_on = nil highlight.blend_on = nil
if highlight._nvim_blend ~= nil then
highlight.blend = highlight._nvim_blend
end
vim.api.nvim_set_hl(0, group, highlight) vim.api.nvim_set_hl(0, group, highlight)
end end