claude bugs 🤦🏾‍♂️

This commit is contained in:
dlond 2025-09-02 16:27:11 +12:00 committed by Daniel Lond
parent 70d0ccef7f
commit 5a94646a7a
5 changed files with 96 additions and 15 deletions

View file

@ -0,0 +1,13 @@
-- [[ Basic Autocommands ]]
-- See `:help lua-guide-autocommands`
-- Highlight when yanking (copying) text
-- Try it with `yap` in normal mode
-- See `:help vim.hl.on_yank()`
vim.api.nvim_create_autocmd('TextYankPost', {
desc = 'Highlight when yanking (copying) text',
group = vim.api.nvim_create_augroup('highlight-yank', { clear = true }),
callback = function()
vim.hl.on_yank()
end,
})