vgit.nvim
vgit.nvim copied to clipboard
[Question] How to disable gutter signs
Hi and thanks for your nice plugin.
I'm using Gitsigns for git signs in the gutter and would like to use your plugin mainly for staging and previewing hunks. I noticed that despite disabling live_gutter, there is still an extra margin created by your plugin in the gutter:
Git signs with your plugin:

Git signs without your plugin:

This is my current VGit setup:
require("vgit").setup({
settings = {
live_gutter = {
enabled = false,
edge_navigation = false,
},
live_blame = {
enabled = false,
},
authorship_code_lens = {
enabled = false,
},
scene = {
diff_preference = "split",
},
},
})
Is there a way to disable or get rid of that space in the gutter?
Thanks in advance!