-
Notifications
You must be signed in to change notification settings - Fork 412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Option to disable notification "Config Change Detected. Reloading..." #32
Comments
An option to specify which notifications to enable/disable would be really nice. |
@tsakirist did you enable debug? |
Whoops, yeap, it's enabled. Silly me. |
@maxmahlke check the docs on |
Works like a charm, merci Folke! |
For anyone too lazy: |
How to make change detection work? If i edit my init.vim (where i have all plugin loads defined) and save, nothing happens. If I run |
Update: OK i am pretty sure that
From the doc is exactly about this. OK so I def need to make this change because defining plugins inline disables change detection. Been putting it off since my dotfiles are still heavily structured around old vim configuration file locations. |
Does this still work or am I doing something wrong? require("lazy").setup({
{
import = "plugins",
change_detection = {
notify = false,
},
},
})
If I change any of my modules in |
Oh - never mind.. This seems to work: require("lazy").setup("plugins", {
change_detection = {
notify = false,
},
}) |
Is your feature request related to a problem? Please describe.
I'm porting my nvim config to
lazy
and am getting the "Config Change Detected. Reloading..." notification on every safe. I save a lot.Describe the solution you'd like
An option that disables the notification and just updates the
lazy
index silently.The text was updated successfully, but these errors were encountered: