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

How do you always show the sign column in Vim?

Answer

set signcolumn=yes

Explanation

Use set signcolumn=yes to always display the sign column (used by diagnostics, git markers). Prevents layout shift when signs appear/disappear.

Next

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