{"id":20221259,"url":"https://github.com/jannis-baum/fzf-dotfiles","last_synced_at":"2025-06-20T21:38:29.170Z","repository":{"id":181220911,"uuid":"665998123","full_name":"jannis-baum/fzf-dotfiles","owner":"jannis-baum","description":"Fast and consistent file management in Zsh and Vim with fzf","archived":false,"fork":false,"pushed_at":"2025-04-01T19:15:05.000Z","size":1188,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T20:25:21.505Z","etag":null,"topics":["dotfiles","fzf-scripts","vim-configuration","vim-plugin","zsh-configuration","zsh-plugin"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jannis-baum.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":"2023-07-13T13:21:49.000Z","updated_at":"2025-04-01T19:15:08.000Z","dependencies_parsed_at":"2023-07-14T14:52:31.726Z","dependency_job_id":"bc358b3e-9ed0-4a9c-855e-006959df2297","html_url":"https://github.com/jannis-baum/fzf-dotfiles","commit_stats":null,"previous_names":["jannis-baum/fzf-dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jannis-baum/fzf-dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jannis-baum%2Ffzf-dotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jannis-baum%2Ffzf-dotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jannis-baum%2Ffzf-dotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jannis-baum%2Ffzf-dotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jannis-baum","download_url":"https://codeload.github.com/jannis-baum/fzf-dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jannis-baum%2Ffzf-dotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261021456,"owners_count":23098354,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["dotfiles","fzf-scripts","vim-configuration","vim-plugin","zsh-configuration","zsh-plugin"],"created_at":"2024-11-14T06:52:40.055Z","updated_at":"2025-06-20T21:38:24.159Z","avatar_url":"https://github.com/jannis-baum.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fzf-dotfiles\n\nThis plugin is where I keep my\n[`fzf`](https://github.com/junegunn/fzf.vim)-related dotfiles for file\nmanagement in Zsh and Vim.\n\n![`rgi`-showcase](../assets/rgi-showcase.gif)\n\n## Features\n\n- All features work consistently from Zsh and Vim\n- A key-bound file and directory picker with content preview that makes it easy\n  to\n  - open files from Zsh in Vim and from Vim in the current buffer or new splits\n    and tabs\n  - select files to use in any command\n  - create new files\n  - if you use [kitty terminal](https://sw.kovidgoyal.net/kitty/), images are\n    also shown as previews\n- `rgi`: Live search though all files that is well integrated with Vim's native\n  search (see showcase above)\n- `cdf`: Tracks your working directory history and lets you switch to any\n  directory *fast*\n  - this works especially well because we tend to work in the same set of\n    directories and because `cdf` keeps the most recent ones in the top\n\n## Configuration\n\nThis plugin has some configuration options that enable you to customize your\nexperience. You can set all options as variables in your `.zshrc`; it is not\nnecessary to export them manually. See [`options.zsh`](./options.zsh) for the\nfull list of customizable options.\n\n## Usage\n\nFind instructions for how to use this plugin below\n\n### Requirements\n\n- [`fzf`](https://github.com/junegunn/fzf), including the [Vim\n  install](https://github.com/junegunn/fzf/blob/master/README-VIM.md#installation)\n- [ripgrep (`rg`)](https://github.com/BurntSushi/ripgrep) for searching files\n- [`bat`](https://github.com/sharkdp/bat) for pretty previews\n\nOn top of these, this plugin relies on you having your `$EDITOR` variable set to\nwhatever command you use to open your text editor (`vim`, `nvim`, etc.). If you\nuse [si-vim](https://github.com/jannis-baum/si-vim.zsh) for example, you should\nhave `export EDITOR=siv` in your `.zshenv` file.\n\n### Installation\n\nWith all requirements available, simply source all `.zsh` files from this repo\nin your `.zshrc`, for example like this\n\n```zsh\nfor script in $(find '\u003cpath to this repo\u003e' -name '*.zsh'); do\n    source $script\ndone\n```\n\nand all `.vim` files in your `.vimrc`, for example like this\n\n```vimscript\nfor f in glob($HOME . '\u003cpath to this repo\u003e/**/*.vim', 0, 1)\n    execute 'source ' . f\nendfor\n```\n\nI do this by keeping this repository as a submodule in my\n[dotfiles](https://github.com/jannis-baum/dotfiles.git). If you want to do this,\nI recommend using my tool\n[`sdf`](https://github.com/jannis-baum/sync-dotfiles.zsh) to manage your\ndotfiles and their dependencies.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjannis-baum%2Ffzf-dotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjannis-baum%2Ffzf-dotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjannis-baum%2Ffzf-dotfiles/lists"}