From 049902a802fc3339ce88ed9672a819ab86d551f8 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Wed, 3 Jun 2026 20:33:20 -0500 Subject: [PATCH] add quick no-wrap configuration --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 78f48dba..766bd5d6 100644 --- a/init.lua +++ b/init.lua @@ -104,6 +104,9 @@ vim.o.number = true -- Experiment for yourself to see if you like it! vim.o.relativenumber = true +-- Set to nowrap //TODO: can this be in a separate file than the init.lua to avoid conflicts with upstream? +vim.o.wrap = false + -- Enable mouse mode, can be useful for resizing splits for example! vim.o.mouse = 'a' @@ -703,6 +706,7 @@ require('lazy').setup({ javascript = true, typescript = true, typescriptreact = true, + cs = true, -- python = true, } if enabled_filetypes[vim.bo[bufnr].filetype] then