Adding autopair support

This commit is contained in:
Jason Schneekloth 2025-12-04 18:17:49 -06:00
parent a73e190383
commit f8597e2688
1 changed files with 8 additions and 0 deletions

View File

@ -362,6 +362,14 @@ require('lazy').setup({
}, },
}, },
{ -- Autopair plugin (e.g. automatically pair open/close parens)
'windwp/nvim-autopairs',
event = 'InsertEnter',
config = true,
-- use opts = {} for passing setup options
-- this is equivalent to setup({}) function
},
-- NOTE: Plugins can specify dependencies. -- NOTE: Plugins can specify dependencies.
-- --
-- The dependencies are proper plugin specifications as well - anything -- The dependencies are proper plugin specifications as well - anything