refactor + fmt

This commit is contained in:
2026-04-26 18:06:10 +02:00
parent 56243dacb3
commit 5acc1a8804
31 changed files with 546 additions and 933 deletions
+5
View File
@@ -0,0 +1,5 @@
vim.api.nvim_create_autocmd('TextYankPost', {
desc = 'Highlight when yanking (copying) text',
group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }),
callback = function() vim.hl.on_yank() end,
})