From 248d84a459ea03ab944e4ae1641e190cede6e6fa Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Wed, 15 May 2024 09:52:17 +0100 Subject: [PATCH] precognition: add plugin for navigation hints --- lua/plugins/precognition.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/plugins/precognition.lua diff --git a/lua/plugins/precognition.lua b/lua/plugins/precognition.lua new file mode 100644 index 0000000..f4163da --- /dev/null +++ b/lua/plugins/precognition.lua @@ -0,0 +1,21 @@ +return { + "tris203/precognition.nvim", + config = { + -- startVisible = true, + -- showBlankVirtLine = true, + -- hints = { + -- Caret = { text = "^", prio = 1 }, + -- Dollar = { text = "$", prio = 1 }, + -- w = { text = "w", prio = 10 }, + -- b = { text = "b", prio = 10 }, + -- e = { text = "e", prio = 10 }, + -- }, + -- gutterHints = { + -- --prio is not currentlt used for gutter hints + -- G = { text = "G", prio = 1 }, + -- gg = { text = "gg", prio = 1 }, + -- PrevParagraph = { text = "{", prio = 1 }, + -- NextParagraph = { text = "}", prio = 1 }, + -- }, + }, +}