stop showing tab bar, disable line wrapping by default
This commit is contained in:
parent
20b35c617c
commit
30b04f74a1
1 changed files with 8 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue