Skip to content

Commit fc6030d

Browse files
committed
docs: Comment out unused parts of lazy.nvim config
Makes it easier to copy-and-paste.
1 parent f725c59 commit fc6030d

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

README.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,25 @@ Example for [`lazy.nvim`](https://github.com/folke/lazy.nvim):
6464
```lua
6565
return {
6666
"andrewferrier/debugprint.nvim",
67-
opts = { … },
67+
68+
-- opts = { … },
69+
6870
dependencies = {
6971
"echasnovski/mini.nvim" -- Needed for :ToggleCommentDebugPrints (not needed for NeoVim 0.10+)
7072
},
73+
7174
-- The 'keys' and 'cmds' sections of this configuration are optional and only needed if
7275
-- you want to take advantage of `lazy.nvim` lazy-loading. If you decide to
7376
-- customize the keys/commands (see below), you'll need to change these too.
74-
keys = {
75-
{ "g?", mode = 'n' },
76-
{ "g?", mode = 'x' },
77-
},
78-
cmd = {
79-
"ToggleCommentDebugPrints",
80-
"DeleteDebugPrints",
81-
},
77+
--
78+
-- keys = {
79+
-- { "g?", mode = 'n' },
80+
-- { "g?", mode = 'x' },
81+
-- },
82+
-- cmd = {
83+
-- "ToggleCommentDebugPrints",
84+
-- "DeleteDebugPrints",
85+
-- },
8286
}
8387
```
8488

0 commit comments

Comments
 (0)