Compare commits
No commits in common. "9f97f2d4a1847d0e81e231f90cd0f812e4ae68f5" and "df1af847b2403f8eccd2610d07eaaa2aa32e0581" have entirely different histories.
9f97f2d4a1
...
df1af847b2
@ -17,7 +17,6 @@ local options = {
|
|||||||
side = "left",
|
side = "left",
|
||||||
width = 30,
|
width = 30,
|
||||||
hide_root_folder = true,
|
hide_root_folder = true,
|
||||||
preserve_window_proportions = true,
|
|
||||||
},
|
},
|
||||||
git = {
|
git = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
@ -101,7 +101,7 @@ local default_plugins = {
|
|||||||
vim.api.nvim_create_autocmd({ "BufRead" }, {
|
vim.api.nvim_create_autocmd({ "BufRead" }, {
|
||||||
group = vim.api.nvim_create_augroup("GitSignsLazyLoad", { clear = true }),
|
group = vim.api.nvim_create_augroup("GitSignsLazyLoad", { clear = true }),
|
||||||
callback = function()
|
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
|
if vim.v.shell_error == 0 then
|
||||||
vim.api.nvim_del_augroup_by_name "GitSignsLazyLoad"
|
vim.api.nvim_del_augroup_by_name "GitSignsLazyLoad"
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
|
Loading…
Reference in New Issue
Block a user