From 77477a380728cbf050fdc3ae0d62f114cff9aee5 Mon Sep 17 00:00:00 2001 From: phucisstupid <125681538+phucisstupid@users.noreply.github.com> Date: Mon, 15 Sep 2025 20:40:30 +0700 Subject: [PATCH] feat(extras): add workflow.hardtime and workflow.precognition --- lua/lazyvim/plugins/extras/workflow/hardtime.lua | 14 ++++++++++++++ .../plugins/extras/workflow/precognition.lua | 12 ++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 lua/lazyvim/plugins/extras/workflow/hardtime.lua create mode 100644 lua/lazyvim/plugins/extras/workflow/precognition.lua diff --git a/lua/lazyvim/plugins/extras/workflow/hardtime.lua b/lua/lazyvim/plugins/extras/workflow/hardtime.lua new file mode 100644 index 00000000..94e4efdf --- /dev/null +++ b/lua/lazyvim/plugins/extras/workflow/hardtime.lua @@ -0,0 +1,14 @@ +return { + "m4xshen/hardtime.nvim", + lazy = false, + dependencies = { "MunifTanjim/nui.nvim" }, + opts = { + disabled_keys = { + [""] = { "", "i" }, + [""] = { "", "i" }, + [""] = { "", "i" }, + [""] = { "", "i" }, + [""] = { "", "i" }, + }, + }, +} diff --git a/lua/lazyvim/plugins/extras/workflow/precognition.lua b/lua/lazyvim/plugins/extras/workflow/precognition.lua new file mode 100644 index 00000000..b83cc368 --- /dev/null +++ b/lua/lazyvim/plugins/extras/workflow/precognition.lua @@ -0,0 +1,12 @@ +return { + "tris203/precognition.nvim", + --event = "VeryLazy", + opts = { + startVisible = true, + showBlankVirtLine = true, + highlightColor = { link = "Comment" }, + disabled_fts = { + "startify", + }, + }, +}