From f6718d4c2bdd08eac4c46c00cb01b3785979af02 Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Thu, 6 Jun 2024 22:58:54 -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" }, + }, }, }