This commit is contained in:
ralvescosta 2025-04-19 08:45:48 -03:00
parent 45aaf121ab
commit 5e7e3de594
1 changed files with 2 additions and 2 deletions

View File

@ -12,11 +12,11 @@ return {
local bufnr = args.buf local bufnr = args.buf
local name = vim.api.nvim_buf_get_name(bufnr) local name = vim.api.nvim_buf_get_name(bufnr)
if name:match 'lazygit' then if name:match 'lazygit' then
vim.cmd 'Neotree git_status refresh' require('neo-tree.sources.git_status.commands').refresh()
end end
end, end,
}) })
--
end, end,
--
}, },
} }