From 91e76cf6883e500caf86656f987eb0107cd4be15 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Tue, 21 Nov 2023 17:58:24 +0100 Subject: [PATCH] always show tab line and separate sign column --- lua/weeheavy/prefs.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/weeheavy/prefs.lua b/lua/weeheavy/prefs.lua index 4908ca9..e8671d5 100644 --- a/lua/weeheavy/prefs.lua +++ b/lua/weeheavy/prefs.lua @@ -22,3 +22,12 @@ vim.o.clipboard = 'unnamedplus' -- Always keep this amount of lines above and below the cursor vim.opt.scrolloff = 5 + +-- Always show tabs +vim.opt.showtabline = 2 + +-- Highlight current line +--vim.opt.cursorline = true + +-- Separate sign colum (shows Git line status) +vim.wo.signcolumn = 'yes'