AutoYADM commit: 2025-01-24 16:20:06

This commit is contained in:
Daniel Fichtinger 2025-01-24 16:20:06 -05:00
parent 68b89c648f
commit aac56a6789
3 changed files with 4 additions and 1 deletions

View file

@ -31,6 +31,7 @@
"lazyvim.plugins.extras.test.core",
"lazyvim.plugins.extras.ui.treesitter-context",
"lazyvim.plugins.extras.util.dot",
"lazyvim.plugins.extras.util.project",
"lazyvim.plugins.extras.util.rest"
],
"news": {

View file

@ -19,7 +19,9 @@ return {
preset = {
-- Defaults to a picker that supports `fzf-lua`, `telescope.nvim` and `mini.pick`
---@type fun(cmd:string, opts:table)|nil
pick = nil,
pick = function(cmd, opts)
return LazyVim.pick(cmd, opts)()
end,
-- Used by the `keys` section to show keymaps.
-- Set your custom keymaps here.
-- When using a function, the `items` argument are the default keymaps.

View file