Skip to content

Commit 5a59fb8

Browse files
authored
Merge pull request #384 from pbnj/fix/telescope-fzf-native-as-dependency
2 parents 9dcf923 + 8ee4d24 commit 5a59fb8

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

init.lua

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -167,19 +167,24 @@ require('lazy').setup({
167167
{ 'numToStr/Comment.nvim', opts = {} },
168168

169169
-- Fuzzy Finder (files, lsp, etc)
170-
{ 'nvim-telescope/telescope.nvim', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } },
171-
172-
-- Fuzzy Finder Algorithm which requires local dependencies to be built.
173-
-- Only load if `make` is available. Make sure you have the system
174-
-- requirements installed.
175170
{
176-
'nvim-telescope/telescope-fzf-native.nvim',
177-
-- NOTE: If you are having trouble with this installation,
178-
-- refer to the README for telescope-fzf-native for more instructions.
179-
build = 'make',
180-
cond = function()
181-
return vim.fn.executable 'make' == 1
182-
end,
171+
'nvim-telescope/telescope.nvim',
172+
branch = '0.1.x',
173+
dependencies = {
174+
'nvim-lua/plenary.nvim'
175+
-- Fuzzy Finder Algorithm which requires local dependencies to be built.
176+
-- Only load if `make` is available. Make sure you have the system
177+
-- requirements installed.
178+
{
179+
'nvim-telescope/telescope-fzf-native.nvim',
180+
-- NOTE: If you are having trouble with this installation,
181+
-- refer to the README for telescope-fzf-native for more instructions.
182+
build = 'make',
183+
cond = function()
184+
return vim.fn.executable 'make' == 1
185+
end,
186+
},
187+
},
183188
},
184189

185190
{

0 commit comments

Comments
 (0)