diff --git a/lua/my_lazy.lua b/lua/my_lazy.lua index 6564de4..1249476 100644 --- a/lua/my_lazy.lua +++ b/lua/my_lazy.lua @@ -17,7 +17,23 @@ local plugins = { 'mrjones2014/legendary.nvim', config = function() require('setup/my_legendary') - end + require('legendary').keymaps( + { + { + 'i', + function() + require("lazy").home() + end, + description = 'Start lazy home' + } + } + ) + end, + dependencies = { + 'stevearc/dressing.nvim', + 'nvim-telescope/telescope.nvim', + }, + keys = { 'p', 'i' } }, { 'nvim-treesitter/nvim-treesitter',