From 0236521ea582747b58869cb72f70ccfa967d2e89 Mon Sep 17 00:00:00 2001 From: Josh Nichols Date: Mon, 7 Aug 2023 04:59:19 -0700 Subject: [PATCH] docs(plugin): add `lazy.nvim` install instruction (#386) --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 6aa7bd1c..0f8454cd 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,20 @@ ### 🚀 Installation +- With [lazy.nvim](https://github.com/folke/lazy.nvim) + +```lua +-- add this to your lua/plugins.lua, lua/plugins/init.lua, or the file you keep your other plugins: +{ + 'numToStr/Comment.nvim', + opts = { + -- add any options here + }, + lazy = false, +} + +``` + - With [packer.nvim](https://github.com/wbthomason/packer.nvim) ```lua