This commit is contained in:
2026-04-28 11:49:00 +03:00
parent 46ad0970a2
commit 479c3bebdb
4 changed files with 63 additions and 18 deletions
+8 -1
View File
@@ -29,7 +29,14 @@ require("lazy").setup({
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } },
install = { colorscheme = { "habamax" }, missing = true },
-- automatically check for plugin updates
checker = { enabled = true },
})
-- Auto sync plugins on startup
vim.api.nvim_create_autocmd("VimEnter", {
callback = function()
vim.cmd("Lazy sync")
end,
})