{"id":13479585,"url":"https://github.com/dstein64/vim-startuptime","last_synced_at":"2025-05-15T17:09:29.824Z","repository":{"id":44408388,"uuid":"233135728","full_name":"dstein64/vim-startuptime","owner":"dstein64","description":"A plugin for viewing Vim and Neovim startup event timing information.","archived":false,"fork":false,"pushed_at":"2025-02-18T04:37:42.000Z","size":571,"stargazers_count":620,"open_issues_count":2,"forks_count":11,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-05-06T15:18:59.968Z","etag":null,"topics":["profiling","startup","vim","vimscript"],"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/dstein64.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-01-10T21:47:55.000Z","updated_at":"2025-05-05T15:00:00.000Z","dependencies_parsed_at":"2024-01-14T15:26:34.963Z","dependency_job_id":"e0cf44cb-522a-4503-9220-62304bf3ff34","html_url":"https://github.com/dstein64/vim-startuptime","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dstein64%2Fvim-startuptime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dstein64%2Fvim-startuptime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dstein64%2Fvim-startuptime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dstein64%2Fvim-startuptime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dstein64","download_url":"https://codeload.github.com/dstein64/vim-startuptime/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254384989,"owners_count":22062422,"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":["profiling","startup","vim","vimscript"],"created_at":"2024-07-31T16:02:19.631Z","updated_at":"2025-05-15T17:09:24.816Z","avatar_url":"https://github.com/dstein64.png","language":"Vim Script","readme":"[![build][badge_thumbnail]][badge_link]\n\n# vim-startuptime\n\n`vim-startuptime` is a plugin for viewing `vim` and `nvim` startup event timing\ninformation. The data is automatically obtained by launching `(n)vim` with the\n`--startuptime` argument. See `:help startuptime-configuration` for details on\ncustomization options.\n\n\u003cimg src=\"https://github.com/dstein64/media/blob/main/vim-startuptime/screenshot.svg?raw=true\" width=\"480\" /\u003e\n\n## Requirements\n\n* `vim\u003e=8.0.1453` or `nvim\u003e=0.3.1`\n  - The plugin may work on earlier versions, but has not been tested.\n  - The plugin depends on compile-time features for `vim` (not applicable for\n    `nvim`).\n    * `+startuptime` is required.\n    * `+timers` is recommended, to capture *all* startup events.\n    * `+terminal` is required.\n\n## Installation\n\nA package manager can be used to install `vim-startuptime`.\n\u003cdetails\u003e\u003csummary\u003eExamples\u003c/summary\u003e\u003cbr\u003e\n\n* [Vim8 packages][vim8pack]:\n  - `git clone https://github.com/dstein64/vim-startuptime ~/.vim/pack/plugins/start/vim-startuptime`\n* [Vundle][vundle]:\n  - Add `Plugin 'dstein64/vim-startuptime'` to `~/.vimrc`\n  - `:PluginInstall` or `$ vim +PluginInstall +qall`\n* [Pathogen][pathogen]:\n  - `git clone --depth=1 https://github.com/dstein64/vim-startuptime ~/.vim/bundle/vim-startuptime`\n* [vim-plug][vimplug]:\n  - Add `Plug 'dstein64/vim-startuptime'` to `~/.vimrc`\n  - `:PlugInstall` or `$ vim +PlugInstall +qall`\n* [dein.vim][dein]:\n  - Add `call dein#add('dstein64/vim-startuptime')` to `~/.vimrc`\n  - `:call dein#install()`\n* [NeoBundle][neobundle]:\n  - Add `NeoBundle 'dstein64/vim-startuptime'` to `~/.vimrc`\n  - Re-open vim or execute `:source ~/.vimrc`\n\n\u003c/details\u003e\n\n## Usage\n\n* Launch `vim-startuptime` with `:StartupTime`.\n* Press `K` on events to get additional information.\n* Press `gf` on sourcing events to load the corresponding file in a new split.\n* The key sequences above can be customized (`:help startuptime-configuration`).\n* Times are in milliseconds.\n\n## Documentation\n\nDocumentation can be accessed with either:\n\n```vim\n:help vim-startuptime\n```\n\nor:\n\n```vim\n:StartupTime --help\n```\n\nThe underlying markup is in [startuptime.txt](doc/startuptime.txt).\n\nThere is documentation on the following topics.\n\n| Topic               | `:help` *{subject}*               |\n|---------------------|-----------------------------------|\n| Arguments           | `startuptime-arguments`           |\n| Modifiers           | `startuptime-modifiers`           |\n| Vim Options         | `startuptime-vim-options`         |\n| Configuration       | `startuptime-configuration`       |\n| Color Customization | `startuptime-color-customization` |\n\nLicense\n-------\n\nThe source code has an [MIT License](https://en.wikipedia.org/wiki/MIT_License).\n\nSee [LICENSE](LICENSE).\n\n[badge_link]: https://github.com/dstein64/vim-startuptime/actions/workflows/build.yml\n[badge_thumbnail]: https://github.com/dstein64/vim-startuptime/actions/workflows/build.yml/badge.svg\n[dein]: https://github.com/Shougo/dein.vim\n[neobundle]: https://github.com/Shougo/neobundle.vim\n[pathogen]: https://github.com/tpope/vim-pathogen\n[vim8pack]: http://vimhelp.appspot.com/repeat.txt.html#packages\n[vimplug]: https://github.com/junegunn/vim-plug\n[vundle]: https://github.com/gmarik/vundle\n","funding_links":[],"categories":["Vim Script"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdstein64%2Fvim-startuptime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdstein64%2Fvim-startuptime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdstein64%2Fvim-startuptime/lists"}