tear appart all the things

This commit is contained in:
Thomas Ruoff
2025-04-28 22:49:05 +02:00
parent d350db2449
commit 159dbe2619
25 changed files with 749 additions and 1643 deletions

10
lua/core/autocmd.lua Normal file
View File

@@ -0,0 +1,10 @@
-- [[ Basic Autocommands ]]
-- Highlight when yanking (copying) text
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.highlight.on_yank()
end,
})