We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b27e537 commit 9fb708fCopy full SHA for 9fb708f
lua/astrocommunity/pack/laravel/init.lua
@@ -29,11 +29,15 @@ return {
29
event = { "VeryLazy" },
30
opts = function(_, opts)
31
local is_available = require("astrocore").is_available
32
- opts.pickers = { enable = true }
33
- opts.pickers.provider = (is_available "telescope.nvim" and "telescope")
34
- or (is_available "fzf-lua" and "fzf-lua")
35
- or (is_available "snacks.nvim" and "snacks")
36
- or "ui.select"
+ opts.features = {
+ pickers = {
+ enable = true,
+ provider = (is_available "telescope.nvim" and "telescope")
+ or (is_available "fzf-lua" and "fzf-lua")
37
+ or (is_available "snacks.nvim" and "snacks")
38
+ or "ui.select",
39
+ },
40
+ }
41
end,
42
},
43
{
0 commit comments