{"id":15699046,"url":"https://github.com/pgilad/neobundle-packages","last_synced_at":"2025-08-31T16:44:37.058Z","repository":{"id":15034757,"uuid":"17760626","full_name":"pgilad/neobundle-packages","owner":"pgilad","description":"Neobundle list of packages in json format","archived":false,"fork":false,"pushed_at":"2019-02-13T09:29:17.000Z","size":8,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-09T02:15:59.398Z","etag":null,"topics":["neobundle","neobundle-packages","vim","vim-plugins","vim-script"],"latest_commit_sha":null,"homepage":null,"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/pgilad.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}},"created_at":"2014-03-14T21:16:38.000Z","updated_at":"2022-05-07T02:09:58.000Z","dependencies_parsed_at":"2022-07-22T11:17:47.279Z","dependency_job_id":null,"html_url":"https://github.com/pgilad/neobundle-packages","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pgilad/neobundle-packages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgilad%2Fneobundle-packages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgilad%2Fneobundle-packages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgilad%2Fneobundle-packages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgilad%2Fneobundle-packages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pgilad","download_url":"https://codeload.github.com/pgilad/neobundle-packages/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgilad%2Fneobundle-packages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273010950,"owners_count":25030368,"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","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["neobundle","neobundle-packages","vim","vim-plugins","vim-script"],"created_at":"2024-10-03T19:37:45.738Z","updated_at":"2025-08-31T16:44:37.037Z","avatar_url":"https://github.com/pgilad.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"#Neobundle-Packages\n\u003e Bringing vim packages to 2014 with the aid of NeoBundle\n\n## Goal\n\nThe goal of this project is to gather a list of jsons for installable packages in [NeoBundle](https://github.com/Shougo/neobundle.vim)\n\n**Shougou** has created a [neobundle-vim-recipes](https://github.com/Shougo/neobundle-vim-recipes) repository\nwhich unifies NeoBundle recipes, but they are in a vim-format, and I want it to be JSON.\n\nAlso I recently read an article by **Genki Sugimoto** on the subject of using YAML recipes for NeoBundle. I loved this,\nbut still want to use the common JSON format.\n[Manage Vim Plugins the Beautiful Way using Yaml](http://genkisugimoto.com/blog/manage-vim-plugins-via-yaml/)\n\nAlso - I want a format that could in the future be the database of vim plugins (similar to NPM which\nis my aspiration for this).\n\nMy main focus in creating JSON NeoBundle recipes is 2 things:\n1. An easy-parseable and modern format.\n2. Utilizing the **lazy** loading feature in NeoBundle, which is crucial when you have many installed plugins.\n\n*(I have 76 packages and that number is growing)*\n\n**Notice: even though this plugin works, please be prepared for major API changes as this develops**\n\n## Immediate Goals\n\n- Get bundle path from NeoBundle (**done**)\n- Add more packages to test performance\n\n## Sample ctrlp.json\n\n```json\n{\n    \"name\": \"ctrlp\",\n    \"lazy\": true,\n    \"autoload\": {\n        \"commands\": [\"CtrlP\", \"CtrlPBuffer\", \"CtrlPMRU\", \"CtrlPMixed\"]\n    },\n    \"version\": \"\",\n    \"description\": \"\",\n    \"license\": \"\",\n    \"repository\": \"kien/ctrlp.vim\",\n    \"homepage\": \"https://github.com/kien/ctrlp.vim\",\n    \"bugs\": \"https://github.com/kien/ctrlp.vim/issues\",\n    \"author\": {\n        \"name\": \"\",\n        \"email\": \"\"\n    },\n    \"engines\": {\n        \"vim\": \"\"\n    },\n    \"keywords\": [\n        \"vim\",\n        \"search\"\n    ]\n}\n```\n\n## Usages\n\n#### Loading a package from a known json package:\n\nSuppose that there is a `ctrlp.json` file that lies in the `packages/` directory. You load it via:\n```vim\ncall neobundle_packages#parse_bundle('ctrlp')\n```\n\nAnd that will load the `ctrlp.vim` json package along side it's lazy loading instructions.\n\n## Future\n\n- A growing list of supported plugins\n- A growing conventions that a plugin list database should be created (vim.org is kinda 1999)\n- Support on the side of developers exporting their plugins using `(Plug)` or `global commands`.\n\n## License\n\nMIT © [Gilad Peleg](https://www.giladpeleg.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgilad%2Fneobundle-packages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpgilad%2Fneobundle-packages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgilad%2Fneobundle-packages/lists"}