first commit

This commit is contained in:
Nurzhan Sarzhan 2025-01-21 13:24:05 +01:00
parent 5bdde24dfb
commit e3a11a0ba5
No known key found for this signature in database
GPG key ID: DC4EF9EB802015A0
27 changed files with 890 additions and 952 deletions

View file

@ -1,16 +0,0 @@
-- autopairs
-- https://github.com/windwp/nvim-autopairs
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,
}