diff --git a/lua/ow/plugins/fugitive.lua b/lua/ow/plugins/fugitive.lua index 705c737..dd168fc 100644 --- a/lua/ow/plugins/fugitive.lua +++ b/lua/ow/plugins/fugitive.lua @@ -70,4 +70,11 @@ return { mode = "n", }, }, + config = function() + vim.api.nvim_create_autocmd("BufWritePost", { + callback = function() + vim.fn["fugitive#ReloadStatus"]() + end, + }) + end, }