From 930219051d71234bcd6d2d0bc4ae8fda053b8c02 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sun, 3 Nov 2024 01:01:14 -0400 Subject: [PATCH] feat: update Telescope plugins to include smart-open --- lua/plugins/telescope.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index 3c9ba98..ec588e9 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -169,6 +169,20 @@ local P = { -- Define Telescope Plugins Specs "ibhagwan/fzf-lua", opts = {}, }, + { + "danielfalk/smart-open.nvim", + branch = "0.2.x", + config = function() + require("telescope").load_extension("smart_open") + end, + dependencies = { + "kkharji/sqlite.lua", + -- Only required if using match_algorithm fzf + { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, + -- Optional. If installed, native fzy will be used when match_algorithm is fzy + { "nvim-telescope/telescope-fzy-native.nvim" }, + }, + }, } if require("data.func").check_global_var("use_telescope", false, true) then