fix: Telescope version tag was wrong in lazy config. Telescope now just
uses latest release.
This commit is contained in:
parent
ebbf2fe0fe
commit
1b6759012d
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in New Issue