Merge branch 'v2.0' of https://github.com/NvChad/NvChad into pt

This commit is contained in:
Paul Trowbridge 2023-04-04 13:16:58 -04:00
commit 02224ade77
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ local options = {
side = "left",
width = 30,
hide_root_folder = true,
preserve_window_proportions = true,
},
git = {
enable = true,

View File

@ -101,7 +101,7 @@ local default_plugins = {
vim.api.nvim_create_autocmd({ "BufRead" }, {
group = vim.api.nvim_create_augroup("GitSignsLazyLoad", { clear = true }),
callback = function()
vim.fn.system("git -C " .. vim.fn.expand "%:p:h" .. " rev-parse")
vim.fn.system("git -C " .. '"' .. vim.fn.expand "%:p:h" .. '"' .. " rev-parse")
if vim.v.shell_error == 0 then
vim.api.nvim_del_augroup_by_name "GitSignsLazyLoad"
vim.schedule(function()