ts-autotag fixed

This commit is contained in:
Sarjyant 2024-09-18 06:30:46 +05:45
parent 87857e4028
commit 3d397d3d05
4 changed files with 29 additions and 52 deletions

View file

@ -2,11 +2,12 @@
return {
'windwp/nvim-autopairs',
-- Optional dependency
dependencies = { 'hrsh7th/nvim-cmp' },
event = 'InsertEnter',
-- config = true,
-- use opts = {} for passing setup options
-- this is equivalent to setup({}) function
opts = {},
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())