Massive changes!!

This commit is contained in:
2025-04-12 23:49:02 +01:00
parent df042cfac2
commit dd502a800b
31 changed files with 1805 additions and 2250 deletions

15
lua/autocmd.lua Normal file
View File

@@ -0,0 +1,15 @@
-- [[ Basic Autocommands ]]
-- See `:help lua-guide-autocommands`
-- Highlight when yanking (copying) text
-- Try it with `yap` in normal mode
-- See `:help vim.highlight.on_yank()`
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,
})
require('helpers').edit_cf('a', '/lua/autocmd.lua')