]> git.rmz.io Git - dotfiles.git/blobdiff - nvim/lua/plugins/core.lua
nvim: add vim-startuptime
[dotfiles.git] / nvim / lua / plugins / core.lua
index fecdfd8ad1686716452ee2165e0861689bad9349..acec5987535750b70ac614e84da177a33aada708 100644 (file)
@@ -1,13 +1,13 @@
----@type LazyPluginSpec
+---@type LazySpec
 return {
-  {
-    "LazyVim/LazyVim",
-    opts = {
-      defaults = {
-        autocmds = false,
-        options = false,
-        keymaps = false,
-      },
-    },
+  { "vhyrro/luarocks.nvim",
+    priority = 1000,
+    config = true,
   },
+  { "dstein64/vim-startuptime",
+    cmd = "StartupTime",
+    config = function()
+      vim.g.startuptime_tries = 10
+    end,
+  }
 }