From 5c97754f050169b1f33b2c3190da69ddc370e90f Mon Sep 17 00:00:00 2001 From: Taken Date: Sat, 16 Sep 2023 13:36:04 +0200 Subject: [PATCH] Disabled lazy notifications Signed-off-by: Taken --- lua/taken/lazy.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lua/taken/lazy.lua b/lua/taken/lazy.lua index 1570d59..1c24bce 100644 --- a/lua/taken/lazy.lua +++ b/lua/taken/lazy.lua @@ -15,7 +15,7 @@ local lazy = require("lazy") local plugins = { { import = "taken.plugins" }, - { import = "taken.plugins.lsp" } + { import = "taken.plugins.lsp" }, } local opts = { @@ -24,6 +24,11 @@ local opts = { }, checker = { enabled = true, + notify = false, + }, + change_detection = { + enabled = true, + notify = false, }, }