AutoYADM commit: 2024-12-30 19:30:01

This commit is contained in:
Daniel Fichtinger 2024-12-30 19:30:02 -05:00
parent 0754fee736
commit c880e3afb8
2 changed files with 9 additions and 12 deletions

View file

@ -40,6 +40,11 @@ require("lazy").setup({
enabled = true, -- check for plugin updates periodically enabled = true, -- check for plugin updates periodically
notify = false, -- notify on update notify = false, -- notify on update
}, -- automatically check for plugin updates }, -- automatically check for plugin updates
change_detection = {
-- automatically check for config file changes and reload the ui
enabled = false,
notify = true, -- get a notification when changes are found
},
performance = { performance = {
rtp = { rtp = {
-- disable some rtp plugins -- disable some rtp plugins
@ -55,8 +60,8 @@ require("lazy").setup({
}, },
}, },
}, },
profiling = { -- profiling = {
loader = true, -- loader = true,
require = true, -- require = true,
}, -- },
}) })

View file

@ -1,8 +0,0 @@
return {
"folke/lazy.nvim",
opts = {
install = {
colorscheme = { "noirbuddy" },
},
},
}