From 1cacca09055c7451d7ece11f6e4ce410c6ecd347 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 8 Jan 2025 23:19:02 -0800 Subject: [PATCH] Pin notify for older nvim --- neovim/lazylock-0.9.json | 4 ++-- neovim/lua/lazy_plugins.lua | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/neovim/lazylock-0.9.json b/neovim/lazylock-0.9.json index 9eab655..e34b645 100644 --- a/neovim/lazylock-0.9.json +++ b/neovim/lazylock-0.9.json @@ -129,7 +129,7 @@ }, "nvim-notify": { "branch": "master", - "commit": "bd9cd51f9ef2f6326fc2bc9931d0718c1794e247" + "commit": "d333b6f167900f6d9d42a59005d82919830626bf" }, "nvim-solarized-lua": { "branch": "master", @@ -137,7 +137,7 @@ }, "nvim-treesitter": { "branch": "master", - "commit": "8ca76960ae75e0a3bb231402558eb50e79433161" + "commit": "cfc6f2c117aaaa82f19bcce44deec2c194d900ab" }, "nvim-treesitter-textobjects": { "branch": "master", diff --git a/neovim/lua/lazy_plugins.lua b/neovim/lua/lazy_plugins.lua index 46ec437..384c27e 100644 --- a/neovim/lua/lazy_plugins.lua +++ b/neovim/lua/lazy_plugins.lua @@ -628,6 +628,10 @@ return { -- Fancy notifications { "https://github.com/rcarriga/nvim-notify", + version = utils.map_version_rule({ + [">=0.10.0"] = "3.x.x", + ["<0.10.0"] = "3.13.5", + }), config = function() require("plugins.notify") end,