From 6abc59671d53f22d506e4f8bb88fa16b5328611a Mon Sep 17 00:00:00 2001 From: gered Date: Fri, 31 Jan 2025 11:29:14 -0500 Subject: [PATCH] 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 --- nvim/lua/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua index 85eec6a..5a44cf1 100644 --- a/nvim/lua/options.lua +++ b/nvim/lua/options.lua @@ -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