From bf154e747457074adcf886016f9fffa239a4b763 Mon Sep 17 00:00:00 2001 From: phucisstupid <125681538+phucisstupid@users.noreply.github.com> Date: Wed, 17 Sep 2025 20:52:28 +0700 Subject: [PATCH] move to beginner.lua --- lua/lazyvim/plugins/extras/util/beginner.lua | 18 ++++++++++++++++++ .../plugins/extras/workflow/hardtime.lua | 6 ------ .../plugins/extras/workflow/precognition.lua | 9 --------- 3 files changed, 18 insertions(+), 15 deletions(-) create mode 100644 lua/lazyvim/plugins/extras/util/beginner.lua delete mode 100644 lua/lazyvim/plugins/extras/workflow/hardtime.lua delete mode 100644 lua/lazyvim/plugins/extras/workflow/precognition.lua diff --git a/lua/lazyvim/plugins/extras/util/beginner.lua b/lua/lazyvim/plugins/extras/util/beginner.lua new file mode 100644 index 00000000..be49b119 --- /dev/null +++ b/lua/lazyvim/plugins/extras/util/beginner.lua @@ -0,0 +1,18 @@ +return { + { + "tris203/precognition.nvim", + event = "VeryLazy", + opts = { + startVisible = true, + showBlankVirtLine = true, + highlightColor = { link = "Comment" }, + }, + }, + + { + "m4xshen/hardtime.nvim", + lazy = false, + dependencies = { "MunifTanjim/nui.nvim" }, + opts = {}, + }, +} diff --git a/lua/lazyvim/plugins/extras/workflow/hardtime.lua b/lua/lazyvim/plugins/extras/workflow/hardtime.lua deleted file mode 100644 index a435557d..00000000 --- a/lua/lazyvim/plugins/extras/workflow/hardtime.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - "m4xshen/hardtime.nvim", - lazy = false, - dependencies = { "MunifTanjim/nui.nvim" }, - opts = {}, -} diff --git a/lua/lazyvim/plugins/extras/workflow/precognition.lua b/lua/lazyvim/plugins/extras/workflow/precognition.lua deleted file mode 100644 index 576a2474..00000000 --- a/lua/lazyvim/plugins/extras/workflow/precognition.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - "tris203/precognition.nvim", - event = "VeryLazy", - opts = { - startVisible = true, - showBlankVirtLine = true, - highlightColor = { link = "Comment" }, - }, -}