mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
be3909c544
commit
b40ec94523
|
@ -1,4 +1,4 @@
|
||||||
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2022 December 23
|
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2022 December 24
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
Table of Contents *lazy.nvim-table-of-contents*
|
Table of Contents *lazy.nvim-table-of-contents*
|
||||||
|
@ -121,7 +121,7 @@ PLUGIN SPEC *lazy.nvim-plugin-spec*
|
||||||
│**dependencies**│LazySpec[] │A list of plugin specs that should be loaded when the plugin loads. Dependencies are always lazy-loaded unless specified otherwise │
|
│**dependencies**│LazySpec[] │A list of plugin specs that should be loaded when the plugin loads. Dependencies are always lazy-loaded unless specified otherwise │
|
||||||
│**init** │fun(LazyPlugin) │init functions are always executed during startup │
|
│**init** │fun(LazyPlugin) │init functions are always executed during startup │
|
||||||
│**config** │fun(LazyPlugin) or true or table │config is executed when the plugin loads. You can also set to true or pass a table, that will be passed to require("plugin").setup(opts) │
|
│**config** │fun(LazyPlugin) or true or table │config is executed when the plugin loads. You can also set to true or pass a table, that will be passed to require("plugin").setup(opts) │
|
||||||
│**build** │fun(LazyPlugin) or string │build is executed when a plugin is installed or updated. If it’s a string it will be ran as a shell command. When prefixed with : it is a Neovim command. │
|
│**build** │fun(LazyPlugin) or string or a list of build commands │build is executed when a plugin is installed or updated. If it’s a string it will be ran as a shell command. When prefixed with : it is a Neovim command. You can also specify a list to executed multiple build commands │
|
||||||
│**branch** │string? │Branch of the repository │
|
│**branch** │string? │Branch of the repository │
|
||||||
│**tag** │string? │Tag of the repository │
|
│**tag** │string? │Tag of the repository │
|
||||||
│**commit** │string? │Commit of the repository │
|
│**commit** │string? │Commit of the repository │
|
||||||
|
@ -364,6 +364,39 @@ CONFIGURATION *lazy.nvim-configuration*
|
||||||
task = " ",
|
task = " ",
|
||||||
},
|
},
|
||||||
throttle = 20, -- how frequently should the ui process render events
|
throttle = 20, -- how frequently should the ui process render events
|
||||||
|
custom_keys = {
|
||||||
|
-- you can define custom key maps here.
|
||||||
|
-- To disable one of the defaults, set it to false
|
||||||
|
|
||||||
|
-- open lazygit log
|
||||||
|
["<localleader>l"] = function(plugin)
|
||||||
|
require("lazy.util").open_cmd({ "lazygit", "log" }, {
|
||||||
|
cwd = plugin.dir,
|
||||||
|
terminal = true,
|
||||||
|
close_on_exit = true,
|
||||||
|
enter = true,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
-- open a terminal for the plugin dir
|
||||||
|
["<localleader>t"] = function(plugin)
|
||||||
|
require("lazy.util").open_cmd({ vim.go.shell }, {
|
||||||
|
cwd = plugin.dir,
|
||||||
|
terminal = true,
|
||||||
|
close_on_exit = true,
|
||||||
|
enter = true,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
diff = {
|
||||||
|
-- diff command <d> can be one of:
|
||||||
|
-- browser: opens the github compare view. Note that this is always mapped to <K> as well,
|
||||||
|
-- so you can have a different command for diff <d>
|
||||||
|
-- git: will run git diff and open a buffer with filetype git
|
||||||
|
-- terminal_git: will open a pseudo terminal with git diff
|
||||||
|
-- diffview.nvim: will open Diffview to show the diff
|
||||||
|
cmd = "git",
|
||||||
},
|
},
|
||||||
checker = {
|
checker = {
|
||||||
-- automatically check for plugin updates
|
-- automatically check for plugin updates
|
||||||
|
|
Loading…
Reference in New Issue