From 81f5d1241007bf30ca6ee0885213079765efc594 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 2 Oct 2024 10:04:20 +0200 Subject: [PATCH] configure lazy and manage lazy with lazy :ronseal: --- lua/initlazy.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/initlazy.lua b/lua/initlazy.lua index c9f6dce..a5688f5 100644 --- a/lua/initlazy.lua +++ b/lua/initlazy.lua @@ -6,5 +6,9 @@ end ---@diagnostic disable-next-line: undefined-field vim.opt.rtp:prepend(lazypath) require('lazy').setup { - { import = 'plugins' }, + spec = { + { 'folke/lazy.nvim', version = '*' }, + { import = 'plugins' }, + }, + change_detection = { notify = false }, }