nvim: init: Always enable the signcolumn

Have a fixed column for the diagnostics to appear in as this removes
the jitter when warnings/errors flow in.

Recommended here
https://sharksforarms.dev/posts/neovim-rust/
This commit is contained in:
Sanchayan Maity 2021-09-26 12:02:45 +05:30
parent 97db1c6c9d
commit 0aa93c6e9b
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ vim.o.diffopt = 'filler,internal,algorithm:histogram,indent-heuristic'
vim.o.scrolloff = 999
vim.o.formatoptions = "crqn1j"
vim.o.relativenumber = true
vim.o.signcolumn = "yes"
vim.g.python3_host_prog = '/usr/bin/python3'
-- Disable providers we do not give a shit about