summaryrefslogtreecommitdiffstats
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index f9d7f6f..69711c2 100644
--- a/init.lua
+++ b/init.lua
@@ -264,7 +264,7 @@ vim.opt.writebackup = true -- Keep backup after writing file
vim.opt.number = true -- Show line number
vim.opt.relativenumber = true -- Show relative line number
vim.opt.numberwidth = 4 -- Minimal number of columns for line number (includes the space before the text)
-vim.opt.signcolumn = "auto" -- Show sign column when there is a sign to display
+vim.opt.signcolumn = "yes" -- Always show sign column
vim.opt.foldcolumn = "0" -- Disable foldcolumn
-- Wrapping
vim.opt.wrap = false -- Don't wrap text by default