feat(lazy): lazy.nvim settings can be customized (#4010)

This commit is contained in:
erodey 2023-04-12 14:29:11 +06:00 committed by GitHub
parent b5cc0a51bd
commit 3f2e91b667
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 28 deletions

View file

@ -24,6 +24,35 @@ return {
-- use config.lua for this not put here
},
lazy = {
opts = {
install = {
missing = true,
colorscheme = { "lunar", "habamax" },
},
ui = {
border = "rounded",
},
root = require("lvim.utils").join_paths(get_runtime_dir(), "site", "pack", "lazy", "opt"),
git = {
timeout = 120,
},
lockfile = require("lvim.utils").join_paths(get_config_dir(), "lazy-lock.json"),
performance = {
rtp = {
reset = false,
},
},
defaults = {
lazy = false,
version = nil,
},
readme = {
root = require("lvim.utils").join_paths(get_runtime_dir(), "lazy", "readme"),
},
},
},
autocommands = {},
lang = {},
log = {

View file

@ -93,34 +93,8 @@ function plugin_loader.load(configurations)
vim.opt.runtimepath:remove(join_paths(plugins_dir, "*"))
local status_ok = xpcall(function()
local opts = {
install = {
missing = true,
colorscheme = { lvim.colorscheme, "lunar", "habamax" },
},
ui = {
border = "rounded",
},
root = plugins_dir,
git = {
timeout = 120,
},
lockfile = join_paths(get_config_dir(), "lazy-lock.json"),
performance = {
rtp = {
reset = false,
},
},
defaults = {
lazy = false,
version = nil,
},
readme = {
root = join_paths(get_runtime_dir(), "lazy", "readme"),
},
}
lazy.setup(configurations, opts)
table.insert(lvim.lazy.opts.install.colorscheme, 1, lvim.colorscheme)
lazy.setup(configurations, lvim.lazy.opts)
end, debug.traceback)
if not status_ok then