always show tab line and separate sign column

This commit is contained in:
Oliver Ladner 2023-11-21 17:58:24 +01:00
commit 91e76cf688

View file

@ -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'