feat: default to available picker

This commit is contained in:
Barrett Ruth 2024-06-17 18:30:18 -05:00
parent 13256a3acf
commit 46ebe4ded7
4 changed files with 23 additions and 16 deletions

View file

@ -11,19 +11,16 @@ require('lazy').setup({
{
'barrett-ruth/http-codes.nvim'
opts = {
-- *REQUIRED*: 'fzf' or 'telescope'
use = 'fzf',
-- defaults to available picker: 'fzf-lua' or 'telescope'
use = 'fzf-lua'
-- How the mozilla url is opened.
-- Configured by default based on OS:
open_url = 'xdg-open %s' -- UNIX
-- = 'open %s' -- OSX
-- = 'start %s' -- Windows
},
dependencies = {
-- choose your picker:
'ibhagwan/fzf-lua'
-- 'nvim-telescope/telescope.nvim',
},
-- or 'nvim-telescope/telescope.nvim'
dependencies = 'ibhagwan/fzf-lua'
}
})
```