mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-28 03:30:12 +02:00
feat(util)!: move vim-startuptime
to an extra
This commit is contained in:
parent
4f4911ff95
commit
66dc9c09d6
2 changed files with 8 additions and 9 deletions
8
lua/lazyvim/plugins/extras/util/startuptime.lua
Normal file
8
lua/lazyvim/plugins/extras/util/startuptime.lua
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
-- measure startuptime
|
||||||
|
return {
|
||||||
|
"dstein64/vim-startuptime",
|
||||||
|
cmd = "StartupTime",
|
||||||
|
config = function()
|
||||||
|
vim.g.startuptime_tries = 10
|
||||||
|
end,
|
||||||
|
}
|
|
@ -1,14 +1,5 @@
|
||||||
return {
|
return {
|
||||||
|
|
||||||
-- measure startuptime
|
|
||||||
{
|
|
||||||
"dstein64/vim-startuptime",
|
|
||||||
cmd = "StartupTime",
|
|
||||||
config = function()
|
|
||||||
vim.g.startuptime_tries = 10
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Session management. This saves your session in the background,
|
-- Session management. This saves your session in the background,
|
||||||
-- keeping track of open buffers, window arrangement, and more.
|
-- keeping track of open buffers, window arrangement, and more.
|
||||||
-- You can restore sessions when returning through the dashboard.
|
-- You can restore sessions when returning through the dashboard.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue