diff --git a/lua/lazyvim/plugins/extras/ui/edgy.lua b/lua/lazyvim/plugins/extras/ui/edgy.lua index 9b31a03e..2b42a90d 100644 --- a/lua/lazyvim/plugins/extras/ui/edgy.lua +++ b/lua/lazyvim/plugins/extras/ui/edgy.lua @@ -3,6 +3,10 @@ return { { "folke/edgy.nvim", event = "VeryLazy", + keys = { + -- stylua: ignore + { "ue", function() require("edgy").select() end, desc = "Edgy Select Window" }, + }, opts = { bottom = { { ft = "toggleterm", size = { height = 0.4 } }, @@ -19,7 +23,7 @@ return { { ft = "help", size = { height = 20 }, - -- only show help buffers + -- don't open help files in edgy that we're editing filter = function(buf) return vim.bo[buf].buftype == "help" end,