fixes some theme highlights

This commit is contained in:
Dennis 2025-09-22 08:13:13 +02:00
parent 04d362f4ea
commit 71198f0061
2 changed files with 2 additions and 7 deletions

View file

@ -1,12 +1,7 @@
-- Highlight on yank
local highlight_group = vim.api.nvim_create_augroup("YankHighlight", { clear = true })
vim.api.nvim_create_autocmd("TextYankPost", {
callback = function()
vim.highlight.on_yank()
end,
group = highlight_group,
pattern = "*",
})
function tbl_flatten(t)