claude refactor
This commit is contained in:
parent
ec8084b081
commit
2863cec92c
24 changed files with 1127 additions and 1120 deletions
10
lua/config/autocommands.lua
Normal file
10
lua/config/autocommands.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-- [[ Basic Autocommands ]]
|
||||
-- See `:help lua-guide-autocommands`
|
||||
|
||||
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,
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue