Disable lazy change_detection due to possible memory leakage

This commit is contained in:
don philipe
2026-03-17 13:03:37 +01:00
parent 1b6cad45f5
commit 4f6b390ba6

View File

@@ -33,6 +33,7 @@ require("lazy").setup({
install = { colorscheme = { "habamax" } }, install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates -- automatically check for plugin updates
checker = { enabled = true }, checker = { enabled = true },
change_detection = { enabled = false }, -- active change detection seems to eat up memory over time https://github.com/folke/lazy.nvim/issues/1008
ui = { ui = {
border = "rounded", border = "rounded",
}, },