Breaking Change: Avoid mapping default keybind <S-b>

related to #1504 #1386, leader + b is the new key for opening new buffers now
This commit is contained in:
siduck
2022-08-23 18:54:04 +05:30
parent 4a5a927de8
commit a6f2f0e0b9
2 changed files with 3 additions and 3 deletions

View File

@@ -79,7 +79,7 @@ M.mason_cmds = {
M.gitsigns = function()
autocmd({ "BufRead" }, {
callback = function()
vim.fn.system("git rev-parse " .. 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"