turn word-wrapping off by default in neovim
word wrapping code/configs/etc always just feels so wrong to me, and i can't explain it
This commit is contained in:
parent
437c5fdb4f
commit
6abc59671d
|
@ -70,6 +70,9 @@ vim.opt.cursorline = true
|
|||
-- Minimal number of screen lines to keep above and below the cursor.
|
||||
vim.opt.scrolloff = 10
|
||||
|
||||
-- Word wrap off by default
|
||||
vim.opt.wrap = false
|
||||
|
||||
vim.opt.guifont = 'Cascadia Mono:h12:#h-slight'
|
||||
vim.opt.linespace = -1
|
||||
|
||||
|
|
Loading…
Reference in a new issue