1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

@ -0,0 +1,9 @@
local M = {}
function M.get()
return {
GrugFarResultsMatch = { link = "IncSearch" },
}
end
return M

View File

@ -0,0 +1,9 @@
local M = {}
function M.get()
return {
NvimSurroundHighlight = { bg = U.darken(C.peach, 0.6, C.base), style = { "bold" } },
}
end
return M

View File

@ -0,0 +1,27 @@
local M = {}
-- markdown.nvim highlight groups:
-- https://github.com/MeanderingProgrammer/markdown.nvim?tab=readme-ov-file#colors
function M.get()
local groups = {
RenderMarkdownCode = { bg = C.surface0 },
RenderMarkdownCodeInline = { bg = C.surface1 },
RenderMarkdownBullet = { fg = C.sky },
RenderMarkdownTableHead = { fg = C.blue },
RenderMarkdownTableRow = { fg = C.lavender },
}
local syntax = require("catppuccin.groups.syntax").get()
local base = not O.transparent_background and C.base or nil
for i = 1, 6 do
local color = syntax["rainbow" .. i].fg
groups["RenderMarkdownH" .. i] = { fg = color }
groups["RenderMarkdownH" .. i .. "Bg"] = { bg = U.darken(color, 0.30, base) }
end
return groups
end
return M