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:
Gered 2025-01-31 11:29:14 -05:00
parent 437c5fdb4f
commit 6abc59671d

View file

@ -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