From 2a789eda7a4fc9cae18aa975007eaf1db48dc464 Mon Sep 17 00:00:00 2001 From: anth64 Date: Wed, 28 May 2025 18:45:18 +0200 Subject: [PATCH] add telescope fzf for native fuzzy find, very fast... --- lua/plugins/util.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index bcdf584..2cb4eeb 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -13,7 +13,10 @@ return { }, { "nvim-telescope/telescope.nvim", - dependencies = { "nvim-lua/plenary.nvim" }, + dependencies = { + "nvim-lua/plenary.nvim", + { "nvim-telescope/telescope-fzf-native.nvim", build = "make" } + }, config = function() local builtin = require('telescope.builtin') vim.keymap.set('n', 'pf', builtin.find_files, {})