mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
feat(pick)!: make fzf the default picker for LazyVim
This commit is contained in:
parent
31af207542
commit
ae2340f60a
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ end
|
|||
function M.want()
|
||||
vim.g.lazyvim_picker = vim.g.lazyvim_picker or "auto"
|
||||
if vim.g.lazyvim_picker == "auto" then
|
||||
return LazyVim.has_extra("editor.fzf") and "fzf" or "telescope"
|
||||
return LazyVim.has_extra("editor.telescope") and "telescope" or "fzf"
|
||||
end
|
||||
return vim.g.lazyvim_picker
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue