feat(edgy): when edgy is enabled, use edgy's main window for Telescope to open results in

This commit is contained in:
Folke Lemaitre
2023-10-09 20:12:07 +02:00
parent c0ce89fe62
commit fb70170058

View File

@ -118,6 +118,19 @@ return {
end,
},
-- use edgy's selection window
{
"nvim-telescope/telescope.nvim",
opts = {
defaults = {
get_selecition_window = function()
require("edgy").goto_main()
return 0
end,
},
},
},
-- prevent neo-tree from opening files in edgy windows
{
"nvim-neo-tree/neo-tree.nvim",