tweak: use default colorscheme

This commit is contained in:
Aaron John 2024-06-11 21:34:49 -07:00
commit 50a07b67c7
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -333,7 +333,7 @@ return {
-- install missing plugins on startup. This doesn't increase startup time. -- install missing plugins on startup. This doesn't increase startup time.
missing = true, missing = true,
-- try to load one of these colorschemes when starting an installation during startup -- try to load one of these colorschemes when starting an installation during startup
colorscheme = { "habamax" }, colorscheme = { "default" },
}, },
ui = { ui = {
-- a number <1 is a percentage., >1 is a fixed size -- a number <1 is a percentage., >1 is a fixed size

View file

@ -41,8 +41,7 @@ M.defaults = {
install = { install = {
-- install missing plugins on startup. This doesn't increase startup time. -- install missing plugins on startup. This doesn't increase startup time.
missing = true, missing = true,
-- try to load one of these colorschemes when starting an installation during startup colorscheme = { "default" },
colorscheme = { "habamax" },
}, },
ui = { ui = {
-- a number <1 is a percentage., >1 is a fixed size -- a number <1 is a percentage., >1 is a fixed size
@ -218,7 +217,7 @@ function M.setup(opts)
if type(M.options.spec) == "string" then if type(M.options.spec) == "string" then
M.options.spec = { import = M.options.spec } M.options.spec = { import = M.options.spec }
end end
table.insert(M.options.install.colorscheme, "habamax") table.insert(M.options.install.colorscheme, "default")
-- root -- root
M.options.root = Util.norm(M.options.root) M.options.root = Util.norm(M.options.root)