From c880e3afb814033838b4d4a22da08841fd14175b Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Mon, 30 Dec 2024 19:30:02 -0500 Subject: [PATCH] AutoYADM commit: 2024-12-30 19:30:01 --- .config/nvim/lua/config/lazy.lua | 13 +++++++++---- .config/nvim/lua/plugins/lazy.lua | 8 -------- 2 files changed, 9 insertions(+), 12 deletions(-) delete mode 100644 .config/nvim/lua/plugins/lazy.lua diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 9e15fb94..cf7f06a3 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -40,6 +40,11 @@ require("lazy").setup({ enabled = true, -- check for plugin updates periodically notify = false, -- notify on update }, -- 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 = { rtp = { -- disable some rtp plugins @@ -55,8 +60,8 @@ require("lazy").setup({ }, }, }, - profiling = { - loader = true, - require = true, - }, + -- profiling = { + -- loader = true, + -- require = true, + -- }, }) diff --git a/.config/nvim/lua/plugins/lazy.lua b/.config/nvim/lua/plugins/lazy.lua deleted file mode 100644 index 00a24a93..00000000 --- a/.config/nvim/lua/plugins/lazy.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - "folke/lazy.nvim", - opts = { - install = { - colorscheme = { "noirbuddy" }, - }, - }, -}