From f9617088f8074781fb40b2cfdf239b7db8c571f3 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Thu, 6 Jun 2024 01:50:46 +0200 Subject: [PATCH] Fix trouble config --- nvim/.config/nvim/lua/plugins/trouble.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/trouble.lua b/nvim/.config/nvim/lua/plugins/trouble.lua index c024486..97767f3 100644 --- a/nvim/.config/nvim/lua/plugins/trouble.lua +++ b/nvim/.config/nvim/lua/plugins/trouble.lua @@ -39,17 +39,17 @@ return { -- }) end, config = function() - local trouble_provider = require("trouble.providers.telescope") + local trouble_provider = require("trouble.sources.telescope") local telescope = require("telescope") telescope.setup { defaults = { mappings = { i = { - [""] = trouble_provider.open_with_trouble + [""] = trouble_provider.open }, n = { - [""] = trouble_provider.open_with_trouble + [""] = trouble_provider.open } } }