Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vim Startify | 5,017 | 21 days ago | 75 | mit | Vim script | |||||
:link: The fancy start screen for Vim. | ||||||||||
Vim Nerdtree Tabs | 1,408 | a year ago | 42 | apache-2.0 | Vim script | |||||
NERDTree and tabs together in Vim, painlessly | ||||||||||
Vim Plugins Profile | 569 | a year ago | 2 | gpl-3.0 | Python | |||||
:clock4: Profile Vim's plugins, generate awesome statistics and optimize (n)vim startup time | ||||||||||
Vim Startuptime | 427 | 2 months ago | 1 | mit | Vim Script | |||||
⏲️ A plugin for profiling Vim and Neovim startup time. | ||||||||||
Scrollbar.nvim | 217 | 9 months ago | 9 | apache-2.0 | Lua | |||||
scrollbar for neovim | ||||||||||
Vim Profiler | 199 | 3 years ago | 5 | gpl-3.0 | Python | |||||
:bar_chart: Utility script to profile (n)vim (e.g. startup times of plugins) | ||||||||||
Exit Vim | 173 | 4 years ago | 2 | wtfpl | Vim script | |||||
Vim plugin that exits Vim on startup | ||||||||||
Vim Startuptime | 162 | 4 months ago | 8 | December 06, 2022 | mit | Go | ||||
A small Go program for better `vim --startuptime` alternative | ||||||||||
Tlib_vim | 162 | 8 months ago | 2 | gpl-3.0 | Vim script | |||||
Some utility functions for VIM | ||||||||||
Dotfiles | 138 | 2 months ago | Shell | |||||||
Awesome personal dotfiles |
vim-startuptime
is a plugin for viewing vim
and nvim
startup event timing
information. The data is automatically obtained by launching (n)vim
with the
--startuptime
argument. See :help startuptime-configuration
for details on
customization options.
vim>=8.0.1453
or nvim>=0.3.1
vim
(not applicable for
nvim
).
+startuptime
is required.+timers
is recommended, to capture all startup events.+terminal
is required.A package manager can be used to install vim-startuptime
.
git clone https://github.com/dstein64/vim-startuptime ~/.vim/pack/plugins/start/vim-startuptime
Plugin 'dstein64/vim-startuptime'
to ~/.vimrc
:PluginInstall
or $ vim +PluginInstall +qall
git clone --depth=1 https://github.com/dstein64/vim-startuptime ~/.vim/bundle/vim-startuptime
Plug 'dstein64/vim-startuptime'
to ~/.vimrc
:PlugInstall
or $ vim +PlugInstall +qall
call dein#add('dstein64/vim-startuptime')
to ~/.vimrc
:call dein#install()
NeoBundle 'dstein64/vim-startuptime'
to ~/.vimrc
:source ~/.vimrc
vim-startuptime
with :StartupTime
.K
on events to get additional information.gf
on sourcing events to load the corresponding file in a new split.:help startuptime-configuration
).Documentation can be accessed with either:
:help vim-startuptime
or:
:StartupTime --help
The underlying markup is in startuptime.txt.
There is documentation on the following topics.
Topic |
:help {subject}
|
---|---|
Arguments | startuptime-arguments |
Modifiers | startuptime-modifiers |
Vim Options | startuptime-vim-options |
Configuration | startuptime-configuration |
Color Customization | startuptime-color-customization |
The source code has an MIT License.
See LICENSE.