Merge branch 'master' of github.com:nvim-lua/kickstart.nvim into nvim-lua-master

update
This commit is contained in:
Yaser Alraddadi 2025-04-12 12:26:08 +03:00
commit ed1ffcc972
No known key found for this signature in database
GPG key ID: 808212144E6DBE90
2 changed files with 71 additions and 103 deletions

View file

@ -4,13 +4,5 @@
return {
'windwp/nvim-autopairs',
event = 'InsertEnter',
-- Optional dependency
dependencies = { 'hrsh7th/nvim-cmp' },
config = function()
require('nvim-autopairs').setup {}
-- If you want to automatically add `(` after selecting a function or method
local cmp_autopairs = require 'nvim-autopairs.completion.cmp'
local cmp = require 'cmp'
cmp.event:on('confirm_done', cmp_autopairs.on_confirm_done())
end,
opts = {},
}