init telescope

This commit is contained in:
Jonathan DeMasi
2025-09-12 22:09:33 -06:00
parent f5698e229e
commit cd558d5708
4 changed files with 30 additions and 3 deletions

24
lua/plugins/telescope.lua Normal file
View File

@@ -0,0 +1,24 @@
return {
{
'nvim-telescope/telescope.nvim',
tag = '0.1.8',
dependencies = { 'nvim-lua/plenary.nvim',
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' }
},
config = function()
require('telescope').setup {
pickers = {
find_files = {
theme = "ivy"
}
},
extensions = {
fzf = {}
}
}
require('telescope').load_extension('fzf')
vim.keymap.set("n", "<space>fd", require('telescope.builtin').find_files)
end
}
}