vgit.nvim icon indicating copy to clipboard operation
vgit.nvim copied to clipboard

[Question] How to disable gutter signs

Open idr4n opened this issue 3 years ago • 0 comments

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: image

Git signs without your plugin: image

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!

idr4n avatar Jun 05 '22 09:06 idr4n