From 0f77a110d37069e2ded7ef92cc48124f55cbda38 Mon Sep 17 00:00:00 2001
From: Marty Oehme <marty.oehme@gmail.com>
Date: Fri, 31 Jan 2025 12:37:04 +0100
Subject: [PATCH] nvim: Track master for plenary

Ensure that we run the master branch version of plenary and do not
adhere to any versioned release since the newest is now multiple years
back.
---
 nvim/.config/nvim/lua/plugins/base.lua | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/nvim/.config/nvim/lua/plugins/base.lua b/nvim/.config/nvim/lua/plugins/base.lua
index 35bac31..838f938 100644
--- a/nvim/.config/nvim/lua/plugins/base.lua
+++ b/nvim/.config/nvim/lua/plugins/base.lua
@@ -251,4 +251,6 @@ return {
 	{ "stevearc/stickybuf.nvim", config = true },
 	-- make it a little less painful to open really big (>2mb) files by disabling features
 	-- { "LunarVim/bigfile.nvim", lazy = false },
+	-- set plenary to follow master branch here, but let individual plugins actually load it
+	{ "nvim-lua/plenary.nvim", version = false, optional = true },
 }