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:
parent
97db1c6c9d
commit
0aa93c6e9b
1 changed files with 1 additions and 0 deletions
|
@ -45,6 +45,7 @@ vim.o.diffopt = 'filler,internal,algorithm:histogram,indent-heuristic'
|
||||||
vim.o.scrolloff = 999
|
vim.o.scrolloff = 999
|
||||||
vim.o.formatoptions = "crqn1j"
|
vim.o.formatoptions = "crqn1j"
|
||||||
vim.o.relativenumber = true
|
vim.o.relativenumber = true
|
||||||
|
vim.o.signcolumn = "yes"
|
||||||
|
|
||||||
vim.g.python3_host_prog = '/usr/bin/python3'
|
vim.g.python3_host_prog = '/usr/bin/python3'
|
||||||
-- Disable providers we do not give a shit about
|
-- Disable providers we do not give a shit about
|
||||||
|
|
Loading…
Reference in a new issue