pull out telescope

This commit is contained in:
Thomas Ruoff
2023-03-29 22:56:25 +02:00
parent 4406d24bd9
commit 5ff48e3b7b
3 changed files with 42 additions and 49 deletions

View File

@@ -0,0 +1,24 @@
return {
{
'nvim-telescope/telescope.nvim',
version = '*',
dependencies = { 'nvim-lua/plenary.nvim' },
opts = {
defaults = {
mappings = {
i = {
['<C-u>'] = false,
['<C-d>'] = false,
},
},
},
},
},
{
'nvim-telescope/telescope-fzf-native.nvim',
build = 'make',
cond = function()
return vim.fn.executable 'make' == 1
end,
},
}