vimtricks.wiki Concise Vim tricks, one at a time.

How do you show git changes in the sign column?

Answer

require('gitsigns').setup()

Explanation

gitsigns.nvim shows added/modified/deleted lines in the sign column. Provides hunks navigation with ]c/[c and staging with :Gitsigns stage_hunk.

Next

How do I visually select a double-quoted string including the quotes themselves?