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