Reputation: 137
How do I make this space wider?
When my code is not all right, informations will show up here.
Then the width changes all the time.
Upvotes: 5
Views: 2380
Reputation: 501
You have a few options:
vim.o.signcolumn = 'auto' -- this is what you seem to be using.
vim.o.signcolumn = 3 -- will use 3 columns.
vim.o.signcolumn = 'number' -- will display signs in the number column.
Read the documentation. :h signcolumn
Upvotes: 0