We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78e9d6c commit 14300b3Copy full SHA for 14300b3
doc/lazy.nvim.txt
@@ -61,7 +61,8 @@ REQUIREMENTS *lazy.nvim-requirements*
61
62
INSTALLATION *lazy.nvim-installation*
63
64
-You can use the following Lua code to bootstrap **lazy.nvim**
+You can add the following Lua code to your `init.lua` to bootstrap
65
+**lazy.nvim**
66
67
>lua
68
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
@@ -95,6 +96,8 @@ Next step is to add **lazy.nvim** to the top of your `init.lua`
95
96
97
98
-- example using a list of specs with the default options
99
+ vim.g.mapleader = " " -- make sure to set `mapleader` before lazy so your mappings are correct
100
+
101
require("lazy").setup({
102
"folke/which-key.nvim",
103
{ "folke/neoconf.nvim", cmd = "Neoconf" },
0 commit comments