1
0
Fork 0

fix: Telescope version tag was wrong in lazy config. Telescope now just

uses latest release.
This commit is contained in:
Tristan Russell 2026-05-02 22:28:06 -04:00
parent ebbf2fe0fe
commit 1b6759012d
Signed by: tristanr
GPG Key ID: 4495C92911DF04CA
1 changed files with 6 additions and 3 deletions

View File

@ -59,9 +59,12 @@ require("lazy").setup({
'hrsh7th/cmp-cmdline'
},
{ -- File navigation fuzzy finder
'nvim-telescope/telescope.nvim',
tag = '0.2.2',
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' },
}
},
{ -- File navigation utility
'ThePrimeagen/harpoon'