stop showing tab bar, disable line wrapping by default

This commit is contained in:
Oliver Ladner 2023-11-23 14:47:24 +01:00
commit 30b04f74a1

View file

@ -23,11 +23,17 @@ 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
-- Always show tab bar
-- NOTE: I try to get away from this by using buffer management with Telescope
--vim.opt.showtabline = 2
-- Highlight current line
--vim.opt.cursorline = true
-- Separate sign colum (shows Git line status)
vim.wo.signcolumn = 'yes'
-- Blink cursor in normal mode
--vim.opt.guicursor = 'n:blinkon300-blinkwait200-blinkoff300'
--
vim.o.wrap = false