{"id":33203341,"url":"https://github.com/florianbeer/vimrcfu","last_synced_at":"2025-11-21T20:01:56.008Z","repository":{"id":22595427,"uuid":"25937408","full_name":"florianbeer/vimrcfu","owner":"florianbeer","description":":fire: vimrcfu - Share your best vimrc snippets","archived":false,"fork":false,"pushed_at":"2025-01-16T13:35:05.000Z","size":982,"stargazers_count":48,"open_issues_count":3,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-08T14:52:37.714Z","etag":null,"topics":["laravel","php","vim","vimrc","vimrc-vim"],"latest_commit_sha":null,"homepage":"http://vimrcfu.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/florianbeer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-29T19:21:57.000Z","updated_at":"2023-03-09T17:20:30.000Z","dependencies_parsed_at":"2022-09-10T23:20:45.555Z","dependency_job_id":null,"html_url":"https://github.com/florianbeer/vimrcfu","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/florianbeer/vimrcfu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianbeer%2Fvimrcfu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianbeer%2Fvimrcfu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianbeer%2Fvimrcfu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianbeer%2Fvimrcfu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/florianbeer","download_url":"https://codeload.github.com/florianbeer/vimrcfu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianbeer%2Fvimrcfu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285681625,"owners_count":27213755,"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-11-21T02:00:06.175Z","response_time":61,"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":["laravel","php","vim","vimrc","vimrc-vim"],"created_at":"2025-11-16T09:00:32.869Z","updated_at":"2025-11-21T20:01:56.002Z","avatar_url":"https://github.com/florianbeer.png","language":"PHP","readme":"# vimrcfu\n\nhttp://vimrcfu.com\n\nMade with [Laravel 4.2](http://laravel.com/docs/4.2)\n\n---\n\n## Set up\n\n* Clone the repository into a directory on your local machine (development) or server (production)\n* Follow the [configuration](#Configuration) steps below\n* **vimrcfu** uses Memcache for caching. If you don't want to install Memcache, set driver to `file` in `app/config/cache.php`.\n* Run `composer install`\n* Run `php artisan migrate`\n* Don't forget to smile once in a while!\n\n\n## \u003ca name=\"#configuration\"\u003e\u003c/a\u003eConfiguration\n\n### For development\n\n* Create a [GitHub application](https://github.com/settings/applications), for example \"vimrcfu dev\", with your local Homepage URL and Authorization callback URL (e.g. `http://vimrcfu.loc` and `http://vimrcfu.loc/login`) and note the Client ID and Client Secret GitHub generates for your.\n* Create the file `.env.local.php` in the directory where you cloned the repository with the following content:\n\n``` php\nreturn [\n  'DB_HOST'       =\u003e 'localhost', # Fill in your database host\n  'DB_NAME'       =\u003e 'vimrcfu',   # Fill in your database name\n  'DB_USER'       =\u003e 'root',      # Fill in your database username\n  'DB_PASSWORD'   =\u003e '',          # Fill in your database password\n  'APP_KEY'       =\u003e '',          # Choose a very random string with at least 32 characters\n  'GITHUB_CLIENT' =\u003e '',          # Fill in your GitHub Client ID\n  'GITHUB_SECRET' =\u003e '',          # Fill in your GitHub Client Secret\n  'PIWIK_URL'     =\u003e '',          # Fill in URL if you want Piwik tracking\n  'PIWIK_ID'      =\u003e '',          # Piwik site id\n   ];\n```\n\n### For production\n\n* In your webserver set an environment variable called `APP_ENV` and give it a value of `production`.\n\n  * For Apache put the following in your vhost configuration: `SetEnv APP_ENV production`\n  * For nginx if you use php-fpm put the following in your location block: `fastcgi_param   APP_ENV  production;`\n\n\n* Create the file `.env.php` in the directory where you cloned the repository with the same contents as above, but fill in your production database settings, Client ID and Client Secret (create a new application on GitHub with the actual Homepage URL and Authorization callback URL for your production domain).\n\n## Maintainer\n\n**vimrcfu** is currently maintained by [Florian Beer](http://github.com/florianbeer). If you have any questions please don't hesitate to get in touch.\n\nThe best way to ask questions is via GitHub [issues](https://github.com/florianbeer/vimrcfu/issues) or via Twitter [@azath0th](https://twitter.com/azath0th).\n\n## Contributing\n\nPlease see [CONTRIBUTING](https://github.com/florianbeer/vimrcfu/blob/master/CONTRIBUTING.md) for details.\n\n## License\n\n\u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"\u003e\u003cimg alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png\" /\u003e\u003c/a\u003e\u003cbr /\u003e\u003cspan xmlns:dct=\"http://purl.org/dc/terms/\" property=\"dct:title\"\u003evimrcfu\u003c/span\u003e by \u003ca xmlns:cc=\"http://creativecommons.org/ns#\" href=\"http://42dev.eu\" property=\"cc:attributionName\" rel=\"cc:attributionURL\"\u003eFlorian Beer | 42dev\u003c/a\u003e is licensed under a \u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"\u003eCreative Commons Attribution-NonCommercial-ShareAlike 4.0 International License\u003c/a\u003e.\n\nPlease see [LICENSE](https://github.com/florianbeer/vimrcfu/blob/master/LICENSE.md) for more details.\n\n","funding_links":[],"categories":["Resources"],"sub_categories":["Applications Built with Laravel"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorianbeer%2Fvimrcfu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflorianbeer%2Fvimrcfu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorianbeer%2Fvimrcfu/lists"}