nvim: Switch back to fzf for fuzzy finding

Since I am now using fzf for a bunch of other things as well it made
sense to switch back in smart open as well.
This commit is contained in:
2025-09-12 00:51:05 +02:00
parent 43b0059631
commit 54b1090984
2 changed files with 8 additions and 4 deletions

View File

@@ -37,6 +37,9 @@ return {
["ui-select"] = {
require("telescope.themes").get_dropdown(),
},
smart_open = {
match_algorithm = "fzf",
},
},
}
end,
@@ -114,12 +117,13 @@ return {
end,
},
{
"nvim-telescope/telescope-fzy-native.nvim",
"nvim-telescope/telescope-fzf-native.nvim",
build = "make",
dependencies = {
"nvim-telescope/telescope.nvim",
},
config = function()
require("telescope").load_extension("fzy_native")
require("telescope").load_extension("fzf")
end,
},
{
@@ -131,7 +135,7 @@ return {
dependencies = {
"kkharji/sqlite.lua",
"nvim-telescope/telescope.nvim",
"nvim-telescope/telescope-fzy-native.nvim",
"nvim-telescope/telescope-fzf-native.nvim",
{
"ellisonleao/gruvbox.nvim",
opts = function(_, opts)