From e162fa9f4978c2394fc21784313ad99123917925 Mon Sep 17 00:00:00 2001 From: Thomas Smallwood Date: Sun, 23 Nov 2025 02:03:44 +0000 Subject: [PATCH] extra config for precognition --- lua/plugins/precognition.lua | 44 ++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/lua/plugins/precognition.lua b/lua/plugins/precognition.lua index 554ada0..e667d1c 100644 --- a/lua/plugins/precognition.lua +++ b/lua/plugins/precognition.lua @@ -2,27 +2,27 @@ return { "tris203/precognition.nvim", event = "VeryLazy", opts = { - -- startVisible = true, - -- showBlankVirtLine = true, - -- highlightColor = { link = "Comment" }, - -- hints = { - -- Caret = { text = "^", prio = 2 }, - -- Dollar = { text = "$", prio = 1 }, - -- MatchingPair = { text = "%", prio = 5 }, - -- Zero = { text = "0", prio = 1 }, - -- w = { text = "w", prio = 10 }, - -- b = { text = "b", prio = 9 }, - -- e = { text = "e", prio = 8 }, - -- W = { text = "W", prio = 7 }, - -- B = { text = "B", prio = 6 }, - -- E = { text = "E", prio = 5 }, - -- }, - -- gutterHints = { - -- -- prio is not currently used for gutter hints - -- G = { text = "G", prio = 1 }, - -- gg = { text = "gg", prio = 1 }, - -- PrevParagraph = { text = "{", prio = 1 }, - -- NextParagraph = { text = "}", prio = 1 }, - -- }, + startVisible = true, + showBlankVirtLine = true, + highlightColor = { link = "Comment" }, + hints = { + Caret = { text = "^", prio = 2 }, + Dollar = { text = "$", prio = 1 }, + MatchingPair = { text = "%", prio = 5 }, + Zero = { text = "0", prio = 1 }, + w = { text = "w", prio = 10 }, + b = { text = "b", prio = 9 }, + e = { text = "e", prio = 8 }, + W = { text = "W", prio = 7 }, + B = { text = "B", prio = 6 }, + E = { text = "E", prio = 5 }, + }, + gutterHints = { + -- prio is not currently used for gutter hints + G = { text = "G", prio = 1 }, + gg = { text = "gg", prio = 1 }, + PrevParagraph = { text = "{", prio = 1 }, + NextParagraph = { text = "}", prio = 1 }, + }, }, }