mirror of
https://github.com/tomru/vim.git
synced 2026-03-03 06:27:18 +01:00
25 lines
446 B
Lua
25 lines
446 B
Lua
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,
|
|
},
|
|
}
|