From da5f2dec55f52ce8b0ffc632a61fef344f49fe19 Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Tue, 27 May 2025 11:54:48 -0700 Subject: [PATCH] feat: autopairs is working --- lua/plugins/treesitter.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index f1fbb6f..a79cfc6 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -33,9 +33,10 @@ return { }, }, { - -- TODO: Figure out why this plugin is not working. "windwp/nvim-autopairs", - event = "VeryLazy", - opts = {}, + event = "InsertEnter", + opts = { + disable_filetype = { "TelescopePrompt" }, + }, }, }