1 parent 19c9721 commit fe64f5cCopy full SHA for fe64f5c
1 file changed
lua/base/2-lazy.lua
@@ -86,7 +86,7 @@ local function setup_lazy(lazy_dir)
86
spec = spec,
87
defaults = { lazy = true },
88
performance = {
89
- rtp = { -- Use deflate to download faster from the plugin repos.
+ rtp = { -- Disable unnecessary nvim features to speed up startup.
90
disabled_plugins = {
91
"tohtml",
92
"gzip",
@@ -106,7 +106,7 @@ end
106
local lazy_dir = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
107
local is_first_startup = not vim.uv.fs_stat(lazy_dir)
108
109
--- call the functions defined above.
+-- Call the functions defined above.
110
if is_first_startup then
111
git_clone_lazy(lazy_dir)
112
after_installing_plugins_load({ "nvim-treesitter", "mason" })
0 commit comments