소스 검색

✨feat: add windwp/nvim-autopairs plugin

Naz 3 달 전
부모
커밋
11299dd0ff
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      lua/plugins/autopairs.lua

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