{"id":22537632,"url":"https://github.com/carakan/supra-vim","last_synced_at":"2025-03-28T06:42:09.816Z","repository":{"id":66456527,"uuid":"80770643","full_name":"carakan/supra-vim","owner":"carakan","description":"fork of ancient spf13-vim, removed all legacy code and using powerful dein plugin manager.","archived":false,"fork":false,"pushed_at":"2025-01-02T12:00:30.000Z","size":2044,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-02T07:27:58.255Z","etag":null,"topics":["dein","neovim","plugin-vim","vim-ide"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","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/carakan.png","metadata":{"files":{"readme":"README.markdown","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2017-02-02T21:31:19.000Z","updated_at":"2025-01-02T12:00:34.000Z","dependencies_parsed_at":"2025-01-02T13:17:56.679Z","dependency_job_id":"bfe20c44-c8dd-420f-b490-195e963227eb","html_url":"https://github.com/carakan/supra-vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carakan%2Fsupra-vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carakan%2Fsupra-vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carakan%2Fsupra-vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carakan%2Fsupra-vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/carakan","download_url":"https://codeload.github.com/carakan/supra-vim/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245984558,"owners_count":20704794,"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":["dein","neovim","plugin-vim","vim-ide"],"created_at":"2024-12-07T11:07:50.255Z","updated_at":"2025-03-28T06:42:09.790Z","avatar_url":"https://github.com/carakan.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"(NEW) SUPRA(spf13)-vim is a distribution of vim plugins and resources for NeoVim and Vim.\n\nIt is a good starting point for anyone intending to use VIM for development running equally well on Windows, Linux, \\*nix and Mac.\n\nThe distribution is completely customisable using a `~/.vimrc.local`, `~/.vimrc.bundles.local`, and `~/.vimrc.before.local` Vim RC files.\n\n# Installation\n\n## Requirements\n\n#### Install [NeoVim]\n\nuse homebrew\n\n```zsh\nbrew install neovim\n```\n\n#### Installation\n\n```zsh\ncurl https://raw.githubusercontent.com/carakan/supra-vim/master/bootstrap.sh -L \u003e supra-vim.sh \u0026\u0026 sh supra-vim.sh\n```\n\n# A highly optimized .vimrc config file\n\n## Customization\n\nCreate `~/.vimrc.local` for any local\ncustomizations.\n\nFor example, to override the default color schemes:\n\n```zsh\n    echo colorscheme ir_black  \u003e\u003e ~/.vimrc.local\n```\n\n### Before File\n\nCreate a `~/.vimrc.before.local` file to define any customizations\nthat get loaded _before_ the spf13-vim `.vimrc`.\n\nFor example, to prevent autocd into a file directory:\n\n```bash\n    echo let g:spf13_no_autochdir = 1 \u003e\u003e ~/.vimrc.before.local\n```\n\nFor a list of available spf13-vim specific customization options, look at the `~/.vimrc.before` file.\n\n### Fork Customization\n\nThere is an additional tier of customization available to those who want to maintain a\nfork of spf13-vim specialized for a particular group. These users can create `.vimrc.fork`\nand `.vimrc.bundles.fork` files in the root of their fork. The load order for the configuration is:\n\n1. `.vimrc.before` - spf13-vim before configuration\n2. `.vimrc.before.local` - before user configuration\n3. `.vimrc.bundles` - spf13-vim bundle configuration\n4. `.vimrc.bundles.local` - local user bundle configuration\n5. `.vimrc` - spf13-vim vim configuration\n6. `.vimrc.local` - local user configuration\n\nSee `.vimrc.bundles` for specifics on what options can be set to override bundle configuration. See `.vimrc.before` for specifics\non what options can be overridden.\n\nOnce you have this file in your repo, only the bundles you specified will be installed during the first installation of your fork.\n\nYou may also want to update your `README.markdown` file so that the `bootstrap.sh` link points to your repository and your `bootstrap.sh`\nfile to pull down your fork.\n\nFor an example of a fork of spf13-vim that provides customization in this manner see [taxilian's fork](https://github.com/taxilian/spf13-vim).\n\n### Easily Editing Your Configuration\n\n`\u003cLeader\u003eev` opens a new tab containing the .vimrc configuration files listed above. This makes it easier to get an overview of your\nconfiguration and make customizations.\n\n`\u003cLeader\u003esv` sources the .vimrc file, instantly applying your customizations to the currently running vim instance.\n\nThese two mappings can themselves be customized by setting the following in .vimrc.before.local:\n\n```bash\nlet g:spf13_edit_config_mapping='\u003cLeader\u003eev'\nlet g:spf13_apply_config_mapping='\u003cLeader\u003esv'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarakan%2Fsupra-vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarakan%2Fsupra-vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarakan%2Fsupra-vim/lists"}