From 43b5d5c8a5901a79462d1b96c67a55e957bc7205 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Tue, 5 Sep 2023 09:59:01 +0200 Subject: [PATCH] vim: always show sign columns I didn't like the signs over the numbers, but also don't want the jumpiness of the 'auto' mode. --- config/nvim/lua/fschauen/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/nvim/lua/fschauen/init.lua b/config/nvim/lua/fschauen/init.lua index 69be5ab..eea7326 100644 --- a/config/nvim/lua/fschauen/init.lua +++ b/config/nvim/lua/fschauen/init.lua @@ -90,7 +90,7 @@ local set_options = function() 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.signcolumn = 'yes' -- always display the signs column o.list = false -- don't show invisible characters initially o.listchars = { eol = '↲',