X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/8e3c8f1a0a5ba3e52bb62bd8c4820e9ae28b35e7..1e773e058b070d5fb82b6d0086543c0dc156250f:/nvim/lua/plugins/core.lua diff --git a/nvim/lua/plugins/core.lua b/nvim/lua/plugins/core.lua index d782f4c..acec598 100644 --- a/nvim/lua/plugins/core.lua +++ b/nvim/lua/plugins/core.lua @@ -1,12 +1,13 @@ +---@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, + } }