astro-nvim-v3 - fix conflict tab press between copilot and nvim_cmp

This commit is contained in:
huyjaky
2025-01-13 18:28:03 +07:00
parent c0d55ff45e
commit 7fd986783a
6 changed files with 25 additions and 20 deletions

View File

@@ -10,12 +10,13 @@ return {
DiagnosticVirtualTextHint = { fg = get_hlgroup("DiagnosticHint").fg, bg = "none" },
DiagnosticVirtualTextInfo = { fg = get_hlgroup("DiagnosticInfo").fg, bg = "none" },
DiagnosticVirtualTextWarn = { fg = get_hlgroup("DiagnosticWarn").fg, bg = "none" },
CursorLineNr = { fg = "#FFD700", bg = "none", bold = true },
CursorLine = { fg = "none", bg = "#004C4C", bold = true },
Visual = { fg = "#000000", bg = "#FFFFFF", bold = true },
-- remove background of inlay hints
LspInlayHint = { fg = get_hlgroup("LspInlayHint").fg, bg = "none" },
LspInlayHint = { fg = "#FF748B", bg = "none" },
}
return hl