update and remove lsp inlay deprecated plugin

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-04-01 16:03:30 -05:00
parent 030882309d
commit 7fdfc21a4d
6 changed files with 23 additions and 121 deletions

View file

@ -6,7 +6,8 @@ vim.api.nvim_create_autocmd("TextYankPost", {
group = group,
desc = "Highlight when yanking (copying) text",
callback = function()
vim.highlight.on_yank({ timeout = 200 })
-- vim.highlight.on_yank({ timeout = 200 })
vim.hl.on_yank({ timeout = 200 })
end,
})