mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
tweak: use default colorscheme
This commit is contained in:
parent
eb4957442e
commit
50a07b67c7
2 changed files with 3 additions and 4 deletions
|
@ -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
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue