dotfiles/nvim/lua/plugins/telescope.lua
Felix Buehler 9a319d8bf7
Some checks are pending
Build / Lint Code Base (push) Waiting to run
CI / build (push) Waiting to run
nvim: init
2026-01-18 16:03:14 +01:00

23 lines
728 B
Lua

return {
'nvim-telescope/telescope.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
-- optional but recommended
{ -- If encountering errors, see telescope-fzf-native README for installation instructions
'nvim-telescope/telescope-fzf-native.nvim',
-- `build` is used to run some command when the plugin is installed/updated.
-- This is only run then, not every time Neovim starts up.
build = 'make',
-- `cond` is a condition used to determine whether this plugin should be
-- installed and loaded.
cond = function()
return vim.fn.executable 'make' == 1
end,
},
},
config = function()
require("config.telescope")
end,
}