switching to telescope to get because of dependencies and strange time-to-time errors

This commit is contained in:
hollorol
2024-07-30 22:17:54 +02:00
parent 7e848b03bd
commit 2f5c1137ff
3 changed files with 25 additions and 14 deletions
-10
View File
@@ -1,10 +0,0 @@
return {
{
'junegunn/fzf',
run = function() vim.fn['fzf#install']() end
},
{
'junegunn/fzf.vim',
cmd = { 'Files','GFiles','Buffers','Helptags', 'Ag', 'Rg' }, -- Load when invoking FZF commands
}
}
+19
View File
@@ -0,0 +1,19 @@
return {
'nvim-telescope/telescope.nvim', tag = '0.1.8',
-- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' },
config = function()
require('telescope').setup{
defaults = {
mappings = {
i = {
["<esc>"] = require('telescope.actions').close
}
}
}
}
end,
cmd = 'Telescope'
}