minimal extui fuzzy finder for neovim

fix(picker): set initial idx to 0

+1 -1
+1 -1
lua/artio/picker.lua
··· 28 28 local t = vim.tbl_deep_extend("force", { 29 29 closed = false, 30 30 prompt = "", 31 - idx = 1, 31 + idx = 0, 32 32 items = {}, 33 33 matches = {}, 34 34 }, require("artio.config").get(), props)