Merge branch 'main' into feat/opencode

This commit is contained in:
G 2026-05-19 18:09:30 -07:00 committed by GitHub
commit 7640da3a0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,5 @@
*LazyVim.txt* LazyVim docs
For Neovim Last change: 2026 April 26
For Neovim Last change: 2026 May 18
==============================================================================
Table of Contents *LazyVim-table-of-contents*

View file

@ -39,6 +39,9 @@ M.plugin = {
group = function(_, _, data)
---@type string
local match = data.full_match
if match == "#add" then
return
end
local r, g, b = match:sub(2, 2), match:sub(3, 3), match:sub(4, 4)
local hex_color = "#" .. r .. r .. g .. g .. b .. b