From 79ef2605c88816aa30c17599e31d2d5ffdea78fc Mon Sep 17 00:00:00 2001 From: Surendra Verma <62333368+surrenderoz@users.noreply.github.com> Date: Thu, 2 Nov 2023 08:03:54 +0000 Subject: [PATCH] autopairs added {} --- lua/theprimeagen/packer.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/theprimeagen/packer.lua b/lua/theprimeagen/packer.lua index 96f7c6e1..3113987b 100644 --- a/lua/theprimeagen/packer.lua +++ b/lua/theprimeagen/packer.lua @@ -73,6 +73,10 @@ return require('packer').startup(function(use) use("github/copilot.vim") use("eandrju/cellular-automaton.nvim") use("laytan/cloak.nvim") - + use { + "windwp/nvim-autopairs", + config = function() require("nvim-autopairs").setup {} end + } + end)