mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
17 lines
364 B
Lua
17 lines
364 B
Lua
return {
|
|
'nvim-telescope/telescope.nvim', tag = '0.1.5',
|
|
dependencies = { 'nvim-lua/plenary.nvim'},
|
|
requires = {
|
|
{
|
|
"nvim-telescope/telescope-fzf-native.nvim",
|
|
run = "make"
|
|
},
|
|
{
|
|
"nvim-telescope/telescope-dap.nvim"
|
|
}
|
|
},
|
|
config = function()
|
|
require("absolute.after.telescope")
|
|
end
|
|
}
|