From 6435692fc3da9acd0f9021f0302953450ae1ed10 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Sat, 10 Jun 2023 14:48:40 -0700 Subject: [PATCH] Pin fugitive to avoid neovim bug --- neovim/lua/plugins.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index aa5b596..fa759bb 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -149,6 +149,9 @@ use({ -- Adds git operations to vim use({ "tpope/vim-fugitive", + -- HACK: Pinning to avoid neovim bug https://github.com/neovim/neovim/issues/10121 + -- when used in status line. + tag = "v3.6", config = function() require("utils").keymap_set("n", "gb", "Git blame", { desc = "Git blame" }) require("utils").keymap_set("n", "gc", "Git commit", { desc = "Git commit" })