From f8597e26882401c8b6a959ceccc6721fce506636 Mon Sep 17 00:00:00 2001 From: Jason Schneekloth Date: Thu, 4 Dec 2025 18:17:49 -0600 Subject: [PATCH] Adding autopair support --- init.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/init.lua b/init.lua index 51f6eb5c..9422bca7 100644 --- a/init.lua +++ b/init.lua @@ -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. -- -- The dependencies are proper plugin specifications as well - anything