{"id":17383815,"url":"https://github.com/sunaku/vim-unbundle","last_synced_at":"2026-03-08T23:33:13.347Z","repository":{"id":66274283,"uuid":"2594999","full_name":"sunaku/vim-unbundle","owner":"sunaku","description":"🎁 Fast, filetype-lazy loader of Vim scripts \u0026 plugins","archived":false,"fork":false,"pushed_at":"2022-08-21T02:27:58.000Z","size":42,"stargazers_count":96,"open_issues_count":0,"forks_count":6,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-27T21:15:03.178Z","etag":null,"topics":["vim-plugin-manager","vim-plugins"],"latest_commit_sha":null,"homepage":"http://www.vim.org/scripts/script.php?script_id=4744","language":"Vim script","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/sunaku.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":"2011-10-17T21:12:03.000Z","updated_at":"2024-12-18T14:30:55.000Z","dependencies_parsed_at":"2023-07-18T16:30:35.607Z","dependency_job_id":null,"html_url":"https://github.com/sunaku/vim-unbundle","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fvim-unbundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fvim-unbundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fvim-unbundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fvim-unbundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunaku","download_url":"https://codeload.github.com/sunaku/vim-unbundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248841569,"owners_count":21170210,"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":["vim-plugin-manager","vim-plugins"],"created_at":"2024-10-16T07:43:54.119Z","updated_at":"2026-03-08T23:33:08.287Z","avatar_url":"https://github.com/sunaku.png","language":"Vim script","readme":"# unbundle.vim\n\n[Unbundle] activates [Vim scripts] from isolated directories by adding them to\nVim's runtimepath and building missing helptags for documentation therein.\nFor the initiated, it's like [pathogen.vim] but with *ftbundles* and less code.\n\n## Terminology\n\n**bundles** are [Vim scripts] that are stored in isolated `bundle/*/`\ndirectories found in the runtimepath.  For example, `~/.vim/bundle/*/` would\nbe your bundles by default in UNIX. However, you can specify an alternate\nlocation by setting `g:unbundle_bundles_glob`.\n\n**ftbundles** are filetype-specific bundles that are loaded lazily, only when\nthey are first used, to shorten Vim's startup time.  Similar to bundles, they\nare stored in isolated `ftbundle/{filetype}/*/` directories found in the\nruntimepath.  For example, `~/.vim/ftbundle/{filetype}/*/` would be your\nftbundles for `{filetype}` by default in UNIX.  However, you can specify an\nalternate location by setting `g:unbundle_ftbundles_glob`.\n\n## Requirements\n\n* Vim 7 or newer.\n\n## Installation\n\n1. Clone this Git repository or [download its contents][downloads] into a new\n   `vim-unbundle` subdirectory inside your Vim runtime directory.  For\n   example, `~/.vim/vim-unbundle` would be the correct location in Unix.\n\n        git clone https://github.com/sunaku/vim-unbundle.git ~/.vim/vim-unbundle\n\n2. Run the following command inside Vim to start using Unbundle immediately,\n   or add it to your *vimrc* file to start Unbundle whenever you start Vim.\n\n        :runtime vim-unbundle/plugin/unbundle.vim\n\n3. Run the following command inside Vim to learn more about using Unbundle.\n\n        :help unbundle.vim\n\n## Documentation\n\nRun `:help unbundle` or see the `doc/unbundle.txt` file.\n\n## Credits\n\n* [Colin Shea](https://github.com/evaryont) came up with [the idea of\n  *ftbundles*](https://github.com/sunaku/vim-unbundle/issues/2).\n\n* [heavenshell](https://github.com/heavenshell) added [compatibility](\n  https://github.com/sunaku/vim-unbundle/pull/7) with the Japanese\n  [Vim-Kaoriya](http://www.kaoriya.net/software/vim) distribution.\n\n* [Peter Aronoff](http://ithaca.arpinum.org) gave feedback and ideas on how to\n  best organize filetypes with dependent ftbundles, such as eRuby templates.\n\n* An [anonymous Alexander suggested](\n  http://snk.tuxfamily.org/log/vim-script-management-system.html#IDComment98711660)\n  appending `/.` to directory globs for portability across operating systems.\n\n## License\n\n[Spare A Life]: https://sunaku.github.io/vegan-for-life.html\n\u003e Like my work? :+1:  Please [spare a life] today as thanks!\n:cow::pig::chicken::fish::speak_no_evil::v::revolving_hearts:\n\nCopyright 2010 Suraj N. Kurapati \u003chttps://github.com/sunaku\u003e\n\nDistributed under [the same terms as Vim itself][license].\n\n[Unbundle]:     https://github.com/sunaku/vim-unbundle\n[downloads]:    https://github.com/sunaku/vim-unbundle/archive/master.zip\n[license]:      http://vimdoc.sourceforge.net/htmldoc/uganda.html#license\n[pathogen.vim]: https://github.com/tpope/vim-pathogen#readme\n[Vim scripts]:  http://www.vim.org/scripts/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunaku%2Fvim-unbundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunaku%2Fvim-unbundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunaku%2Fvim-unbundle/lists"}