From 4e906222ea88feff1028c08a9851d4e016227e88 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Mon, 12 Sep 2022 21:19:14 -0700 Subject: [PATCH] Pin impatient for old nvim versions --- neovim/lua/plugins.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index f570167..0ec2b5b 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -36,9 +36,10 @@ packer.init({ use({ "lewis6991/impatient.nvim", config = [[require('impatient')]], - commit = utils.map_version_rule({ - [">0.6.0"] = utils.nil_val, - [">=0.5.0"] = "969f2c5", + tag = utils.map_version_rule({ + [">=0.7.0"] = utils.nil_val, + [">0.6.0"] = "v0.2", + [">=0.5.0"] = "v0.1", }), })