Эх сурвалжийг харах

✨feat: add windwp/nvim-autopairs plugin

Naz 2 сар өмнө
parent
commit
11299dd0ff

+ 9 - 0
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,
+}