Skip to content

Commit

Permalink
feat(minit): fallback to habamax when no colorscheme set
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 29, 2024
1 parent 3078688 commit 88f4d13
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lua/lazy/minit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ function M.setup(opts)

vim.o.loadplugins = true
require("lazy").setup(opts)
if vim.g.colors_name == nil then
vim.cmd("colorscheme habamax")
end
require("lazy").update():wait()
if vim.bo.filetype == "lazy" then
local errors = false
Expand Down

0 comments on commit 88f4d13

Please sign in to comment.