@@ -10,7 +10,6 @@ M.defaults = {
10
10
-- version = "*", -- enable this to try installing the latest stable versions of plugins
11
11
},
12
12
lockfile = vim .fn .stdpath (" config" ) .. " /lazy-lock.json" , -- lockfile generated after running update.
13
- install_missing = true , -- install missing plugins on startup. This doesn't increase startup time.
14
13
concurrency = nil , -- set to a number to limit the maximum amount of concurrent tasks
15
14
git = {
16
15
-- defaults for `Lazy log`
@@ -30,6 +29,13 @@ M.defaults = {
30
29
--- @type string[]
31
30
patterns = {}, -- For example {"folke"}
32
31
},
32
+ install = {
33
+ -- install missing plugins on startup. This doesn't increase startup time.
34
+ missing = true ,
35
+ -- try to load one of the colorschemes in this list when starting an install during startup
36
+ -- the first colorscheme that is found will be used
37
+ colorscheme = { " habamax" },
38
+ },
33
39
ui = {
34
40
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
35
41
border = " none" ,
@@ -78,6 +84,8 @@ function M.setup(spec, opts)
78
84
M .spec = spec
79
85
M .options = vim .tbl_deep_extend (" force" , M .defaults , opts or {})
80
86
M .options .performance .cache = require (" lazy.core.cache" )
87
+ table.insert (M .options .install .colorscheme , " habamax" )
88
+
81
89
M .root = M .options .package .path .. " /pack/" .. M .options .package .name .. " /opt"
82
90
83
91
if M .options .performance .reset_packpath then
0 commit comments