From e56d518c5042c7b68f210fc17cd31ca10dcc3d08 Mon Sep 17 00:00:00 2001 From: Matt d'Entremont Date: Mon, 10 Mar 2025 10:26:28 -0300 Subject: [PATCH] Add lazy.nvim instructions - With lazy's popularity I noticed that most repos have it in their setup instructions --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index ff02745..b162e7e 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,20 @@ Plug 'numToStr/Navigator.nvim' lua require('Navigator').setup() ``` +- With [lazy.nvim](https://github.com/folke/lazy.nvim) + +```lua +{ + "numToStr/Navigator.nvim", + config = function() + require("Navigator").setup() + end + # keys = { + # { "", "NavigatorLeft", mode = { "n", "t" } }, + # ... +} +``` + ### ⚒️ Setup #### Neovim