Format with stylua

This commit is contained in:
Lucario387 2022-08-15 19:33:44 +09:00 committed by Sidhanth Rathod
parent 8e8d18ed8d
commit 14ef6759be

View file

@ -79,11 +79,12 @@ M.mason_cmds = {
M.gitsigns = function()
autocmd({ "BufRead" }, {
callback = function()
vim.fn.system([[git rev-parse 2>/dev/null]])
if vim.v.shell_error == 0 then
vim.schedule(function()
require("packer").loader "gitsigns.nvim"
end)
vim.fn.system [[git rev-parse 2>/dev/null]]
if vim.v.shell_error == 0 then
vim.schedule(function()
require("packer").loader "gitsigns.nvim"
end)
end
end,
})
end