mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
0694651fd3
commit
e1e8d2f0f6
|
@ -90,6 +90,7 @@ Nextstep is to add **lazy.nvim** below the code added in the prior step in
|
||||||
>lua
|
>lua
|
||||||
-- Example using a list of specs with the default options
|
-- Example using a list of specs with the default options
|
||||||
vim.g.mapleader = " " -- Make sure to set `mapleader` before lazy so your mappings are correct
|
vim.g.mapleader = " " -- Make sure to set `mapleader` before lazy so your mappings are correct
|
||||||
|
vim.g.maplocalleader = "\\" -- Same for `maplocalleader`
|
||||||
|
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
"folke/which-key.nvim",
|
"folke/which-key.nvim",
|
||||||
|
@ -653,7 +654,7 @@ Any command can have a **bang** to make the command wait till it finished. For
|
||||||
example, if you want to sync lazy from the cmdline, you can use:
|
example, if you want to sync lazy from the cmdline, you can use:
|
||||||
|
|
||||||
>shell
|
>shell
|
||||||
$ nvim --headless "+Lazy! sync" +qa
|
nvim --headless "+Lazy! sync" +qa
|
||||||
<
|
<
|
||||||
|
|
||||||
`opts` is a table with the following key-values:
|
`opts` is a table with the following key-values:
|
||||||
|
|
Loading…
Reference in New Issue