From 0aa93c6e9b9bc4a72fcd03ffda3d5b3eb92acc9e Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sun, 26 Sep 2021 12:02:45 +0530 Subject: [PATCH] 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/ --- nvim/.config/nvim/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index 92084bc..9231efe 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -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