From 648e624d40da745199d641308dcc7c7bfb2a4c07 Mon Sep 17 00:00:00 2001 From: Pulver Date: Wed, 2 Jul 2025 11:37:55 -0700 Subject: [PATCH 1/2] changed readme config to suggest maintained hydra version by nvim tools --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d43af8..050345a 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ be run (just by smashing `x`) or for less commonly used functionality. "hkupty/iron.nvim", -- repl provider -- "akinsho/toggleterm.nvim", -- alternative repl provider -- "benlubas/molten-nvim", -- alternative repl provider - "anuvyklack/hydra.nvim", + "nvimtools/hydra.nvim", }, event = "VeryLazy", config = function() From 52db52f1dd97cbfae957e1952cd17823f057dcf7 Mon Sep 17 00:00:00 2001 From: Pulver Date: Wed, 2 Jul 2025 11:39:11 -0700 Subject: [PATCH 2/2] changed options to be up to date with newer hydra.nvim provider. The previous method will be deprecated in favor of the current type shown here. --- lua/notebook-navigator/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/notebook-navigator/init.lua b/lua/notebook-navigator/init.lua index 797d291..703331f 100644 --- a/lua/notebook-navigator/init.lua +++ b/lua/notebook-navigator/init.lua @@ -224,7 +224,7 @@ local function activate_hydra(config) config = { invoke_on_body = true, color = "pink", - hint = { border = "rounded" }, + hint = { float_opts = { border = "rounded" } }, }, body = config.activate_hydra_keys, heads = active_hydra_heads,