From ae993aef8458ea6981e83ddb6dea0786bfadd00b Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Sun, 22 Feb 2026 12:01:40 +0000 Subject: [PATCH] Update telescope --- nvim/.config/nvim/lua/plugins/telescope.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/telescope.lua b/nvim/.config/nvim/lua/plugins/telescope.lua index 9404a2e..4c4e78a 100644 --- a/nvim/.config/nvim/lua/plugins/telescope.lua +++ b/nvim/.config/nvim/lua/plugins/telescope.lua @@ -1,6 +1,10 @@ return { - 'nvim-telescope/telescope.nvim', branch = '0.1.x', - -- or , branch = '0.1.x', - -- tag = '0.1.8', - dependencies = { 'nvim-lua/plenary.nvim' } + { + 'nvim-telescope/telescope.nvim', version = '*', + dependencies = { + 'nvim-lua/plenary.nvim', + -- optional but recommended + { 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' }, + } + } }