Skip to content

Commit 88f4d13

Browse files
committed
feat(minit): fallback to habamax when no colorscheme set
1 parent 3078688 commit 88f4d13

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/lazy/minit.lua

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ function M.setup(opts)
3535

3636
vim.o.loadplugins = true
3737
require("lazy").setup(opts)
38+
if vim.g.colors_name == nil then
39+
vim.cmd("colorscheme habamax")
40+
end
3841
require("lazy").update():wait()
3942
if vim.bo.filetype == "lazy" then
4043
local errors = false

0 commit comments

Comments
 (0)