From 30b04f74a187e4662a64b7e41fba54819c786c1e Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Thu, 23 Nov 2023 14:47:24 +0100 Subject: [PATCH] stop showing tab bar, disable line wrapping by default --- lua/weeheavy/prefs.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lua/weeheavy/prefs.lua b/lua/weeheavy/prefs.lua index e8671d5..5b14e70 100644 --- a/lua/weeheavy/prefs.lua +++ b/lua/weeheavy/prefs.lua @@ -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