feat: update Telescope plugins to include smart-open

This commit is contained in:
2024-11-03 01:01:14 -04:00
parent 05d678de7c
commit 930219051d
+14
View File
@@ -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