From 11299dd0ff200d7b8a6f4dff8933fb3951fd5151 Mon Sep 17 00:00:00 2001 From: Naz Date: Sat, 8 Feb 2025 10:10:51 +0100 Subject: =?UTF-8?q?=E2=9C=A8feat:=20add=20windwp/nvim-autopairs=20plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/plugins/autopairs.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lua/plugins/autopairs.lua diff --git a/lua/plugins/autopairs.lua b/lua/plugins/autopairs.lua new file mode 100644 index 0000000..34de81c --- /dev/null +++ b/lua/plugins/autopairs.lua @@ -0,0 +1,9 @@ +return { + "windwp/nvim-autopairs", + event = "InsertEnter", + config = function() + require("nvim-autopairs").setup({ + check_ts = true, -- Enable autopairs for treesitter + }) + end, +} -- cgit v1.2.3