{"id":22230234,"url":"https://github.com/calebfroese/fzf-lua-zoxide","last_synced_at":"2026-02-18T17:02:58.539Z","repository":{"id":262918203,"uuid":"850161930","full_name":"calebfroese/fzf-lua-zoxide","owner":"calebfroese","description":"Nvim zoxide extension for fzf-lua plugin","archived":false,"fork":false,"pushed_at":"2024-11-15T01:39:41.000Z","size":4,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T19:39:19.010Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/calebfroese.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-31T03:05:45.000Z","updated_at":"2025-04-28T21:54:01.000Z","dependencies_parsed_at":"2024-11-15T02:28:12.674Z","dependency_job_id":"05a06042-9146-4e6d-8b45-40c963a51e76","html_url":"https://github.com/calebfroese/fzf-lua-zoxide","commit_stats":null,"previous_names":["calebfroese/fzf-lua-zoxide"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/calebfroese/fzf-lua-zoxide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebfroese%2Ffzf-lua-zoxide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebfroese%2Ffzf-lua-zoxide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebfroese%2Ffzf-lua-zoxide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebfroese%2Ffzf-lua-zoxide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/calebfroese","download_url":"https://codeload.github.com/calebfroese/fzf-lua-zoxide/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebfroese%2Ffzf-lua-zoxide/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29587066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T16:55:40.614Z","status":"ssl_error","status_checked_at":"2026-02-18T16:55:37.558Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-03T01:14:49.672Z","updated_at":"2026-02-18T17:02:58.513Z","avatar_url":"https://github.com/calebfroese.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fzf-lua-zoxide\n\nNeovim extension plugin for [fzf-lua](https://github.com/ibhagwan/fzf-lua) to integrate with [zoxide](https://github.com/ajeetdsouza/zoxide).\n\nThis provides the capability to open recently used directories, and sync with zoxide when directories are opened in Neovim.\n\n## Installation\n\nThis project depends on [fzf-lua](https://github.com/ibhagwan/fzf-lua), make sure it is set up correctly before continuing.\n\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim)\n\n```lua\n{\n    \"calebfroese/fzf-lua-zoxide\",\n    dependencies = { \"ibhagwan/fzf-lua\" },\n    config = function()\n        require('fzf-lua-zoxide').setup()\n    end\n}\n```\n\nUsing [packer.nvim](https://github.com/wbthomason/packer.nvim)\n\n```lua\nuse { \"calebfroese/fzf-lua-zoxide\",\n    requires = { \"ibhagwan/fzf-lua\" }\n}\n```\n\n## Usage\n\n```lua\n:lua require('fzf-lua-zoxide').open()\n```\n\nor assign a keymapping\n\n```lua\nvim.keymap.set(\"n\", \"\u003cc-O\u003e\", require('fzf-lua-zoxide').open, { desc = \"Fzf Dirs\" })\n```\n\nOptions can be provided to `open`:\n\n```lua\nrequire('fzf-lua-zoxide').open({\n    ---@field preview? string The command to run in the preview window\n    preview = \"ls -la {}\",\n    ---@field callback? fun(selected: string) Callback to run on select\n    callback = function()\n        -- For example, you could open the directory in netrw after selecting one\n        vim.cmd(\"e \" .. selected)\n    end,\n})\n```\n\nBy default the plugin simply calls `ls {}` to populate the preview window.\n\n## Configuration\n\nThe plugin can be configured with the following options:\n\n```lua\nrequire('fzf-lua-zoxide').setup({\n    ---@field zoxide? string Zoxide executable\n    zoxide = \"~/.bin/zoxide\",\n    ---@field add_on_dir_changed? boolean Whether to automatically add to Zoxide on nvim DirChanged event\n    add_on_dir_changed = true,\n})\n```\n\n### Default Configuration\n\n```lua\n{\n    zoxide = \"zoxide\",\n    add_on_dir_changed = true,\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalebfroese%2Ffzf-lua-zoxide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcalebfroese%2Ffzf-lua-zoxide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalebfroese%2Ffzf-lua-zoxide/lists"}