added telesctop-fzf plugin
This commit is contained in:
@ -1,13 +1,18 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
dependencies = { "nvim-telescope/telescope-media-files.nvim", "nvim-lua/plenary.nvim" },
|
dependencies = {
|
||||||
|
"nvim-telescope/telescope-media-files.nvim",
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
"nvim-telescope/telescope-fzf-native.nvim",
|
||||||
|
},
|
||||||
lazy = false,
|
lazy = false,
|
||||||
config = function(_, _opts)
|
config = function(_, _opts)
|
||||||
local telescope = require("telescope")
|
local telescope = require("telescope")
|
||||||
telescope.setup(_opts)
|
telescope.setup(_opts)
|
||||||
|
|
||||||
telescope.load_extension("media_files")
|
telescope.load_extension("media_files")
|
||||||
|
telescope.load_extension("fzf")
|
||||||
|
|
||||||
local which_key = require("which-key")
|
local which_key = require("which-key")
|
||||||
which_key.add({
|
which_key.add({
|
||||||
@ -117,5 +122,9 @@ return {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'nvim-telescope/telescope-fzf-native.nvim',
|
||||||
|
build = 'make'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user