From 9ef29441a02d1990687db2ba7106694bba6626b8 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sun, 9 Jul 2023 14:07:23 +0200 Subject: [PATCH] vim: display diagnostic signs in number column --- config/nvim/lua/user/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/config/nvim/lua/user/options.lua b/config/nvim/lua/user/options.lua index 30f95b2..a280328 100644 --- a/config/nvim/lua/user/options.lua +++ b/config/nvim/lua/user/options.lua @@ -73,6 +73,7 @@ o.cursorlineopt = 'number'-- ...but only the line number o.showbreak = '⤷ ' -- prefix for wrapped lines o.scrolloff = 3 -- min. # of lines above and below cursor o.sidescrolloff = 3 -- min. # of columns to left and right of cursor +o.signcolumn = 'number' -- display signs in 'number' column o.list = true -- show invisible characters o.listchars = { eol = '↲',