minimal extui fuzzy finder for neovim

fix(builtins): fallback to `find`

+2 -1
+2 -1
lua/artio/builtins.lua
··· 16 16 17 17 local builtins = {} 18 18 19 - local findprg = "fd -H -p -a -t f --color=never" 19 + local findprg = vim.fn.executable("fd") == 1 and "fd -H -p -a -t f --color=never --" 20 + or "find . -type f -iregex '.*$*.*'" 20 21 21 22 ---@class artio.picker.files.Props : artio.Picker.config 22 23 ---@field findprg? string