feat(nvim): set wrap on

This commit is contained in:
Michael Mandl 2025-06-17 15:09:44 +02:00
parent 28d2284c10
commit 8a1e736f09
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2

View file

@ -14,8 +14,8 @@ vim.opt.expandtab = true
-- scroll offset -- scroll offset
vim.opt.scrolloff = 4 vim.opt.scrolloff = 4
-- don't warp lines -- wrap lines
vim.opt.wrap = false vim.opt.wrap = true
-- split to right/below -- split to right/below
vim.opt.splitright = true vim.opt.splitright = true