fix: Windows User cannot load gitsigns

This commit is contained in:
Lucario387 2022-08-20 22:30:01 +09:00 committed by Sidhanth Rathod
parent 089cbe43f1
commit 4a5a927de8
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ M.mason_cmds = {
M.gitsigns = function()
autocmd({ "BufRead" }, {
callback = function()
vim.fn.system("git rev-parse 2>/dev/null " .. vim.fn.expand "%:p:h")
vim.fn.system("git rev-parse " .. vim.fn.expand "%:p:h")
if vim.v.shell_error == 0 then
vim.schedule(function()
require("packer").loader "gitsigns.nvim"