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" }, - }, - }, -}