From f9e2976d9f20c6e69947cfecb20fee5b1db56b0b Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 31 Aug 2022 11:22:37 -0700 Subject: [PATCH] Don't use inc-rename on nvim 0.7 because it's not supported --- neovim/lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index b996e02..4ff32af 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -221,7 +221,7 @@ use({ config = function() require("inc_rename").setup() end, - disable = vim.fn.has("nvim-0.7.0") ~= 1, + disable = vim.fn.has("nvim-0.8.0") ~= 1, }) -- Generic linter/formatters in diagnostics API