From 8a1e736f096398a8ce7e812e322702d7c67e450d Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 17 Jun 2025 15:09:44 +0200 Subject: [PATCH] feat(nvim): set wrap on --- neovim/options.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neovim/options.lua b/neovim/options.lua index 3ac11ae..f1f934a 100644 --- a/neovim/options.lua +++ b/neovim/options.lua @@ -14,8 +14,8 @@ vim.opt.expandtab = true -- scroll offset vim.opt.scrolloff = 4 --- don't warp lines -vim.opt.wrap = false +-- wrap lines +vim.opt.wrap = true -- split to right/below vim.opt.splitright = true