neovim from scracth part 1

This commit is contained in:
RafayAhmad7548 2025-04-24 22:05:47 +05:00
parent 3480fa92fe
commit 21bcbd0bdc
8 changed files with 1051 additions and 805 deletions

View file

@ -0,0 +1,7 @@
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,
})