From 324d08210b5d05d5a3c56ed6bcaa271a18a7bb02 Mon Sep 17 00:00:00 2001 From: SamPosh Date: Thu, 4 May 2023 08:24:54 +0530 Subject: [PATCH] Create autopairs.lua Auto pairs added --- lua/custom/plugins/autopairs.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/custom/plugins/autopairs.lua diff --git a/lua/custom/plugins/autopairs.lua b/lua/custom/plugins/autopairs.lua new file mode 100644 index 00000000..cd5931d4 --- /dev/null +++ b/lua/custom/plugins/autopairs.lua @@ -0,0 +1,8 @@ +-- File: lua/custom/plugins/autopairs.lua + +return { + "windwp/nvim-autopairs", + config = function() + require("nvim-autopairs").setup {} + end, +}