X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/fb9c5fe3a848dab8e9ed252a45efd1e4815473c6..b763903eaa3318177700ab68c7ec6473a52a0c9e:/nvim/lua/plugins/core.lua diff --git a/nvim/lua/plugins/core.lua b/nvim/lua/plugins/core.lua index 5b83b88..acec598 100644 --- a/nvim/lua/plugins/core.lua +++ b/nvim/lua/plugins/core.lua @@ -1,11 +1,13 @@ +---@type LazySpec return { - { - "LazyVim/LazyVim", - opts = { - defaults = { - autocmds = false, - options = false, - }, - }, + { "vhyrro/luarocks.nvim", + priority = 1000, + config = true, }, + { "dstein64/vim-startuptime", + cmd = "StartupTime", + config = function() + vim.g.startuptime_tries = 10 + end, + } }