Skip to content

Commit b06980a

Browse files
authored
fix(init): turn telescope-fzf-native into a dependecy
1 parent 9dcf923 commit b06980a

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+
}
176+
-- Fuzzy Finder Algorithm which requires local dependencies to be built.
177+
-- Only load if `make` is available. Make sure you have the system
178+
-- requirements installed.
179+
{
180+
'nvim-telescope/telescope-fzf-native.nvim',
181+
-- NOTE: If you are having trouble with this installation,
182+
-- refer to the README for telescope-fzf-native for more instructions.
183+
build = 'make',
184+
cond = function()
185+
return vim.fn.executable 'make' == 1
186+
end,
187+
},
183188
},
184189

185190
{

0 commit comments

Comments
 (0)