From 3d6b0934b0295ee489be7a59fb37400ffc5e1023 Mon Sep 17 00:00:00 2001 From: Mikolaj_Bien Date: Tue, 6 May 2025 09:44:25 +0200 Subject: [PATCH] feat: disable wraping --- init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.lua b/init.lua index 674dc928..24deaea7 100644 --- a/init.lua +++ b/init.lua @@ -52,6 +52,8 @@ vim.opt.splitbelow = true vim.opt.list = false vim.opt.listchars = { trail = '·', nbsp = '␣', tab = ' ' } +vim.opt.wrap = false + vim.opt.tabstop = 2 -- Number of spaces that a in the file counts for vim.opt.shiftwidth = 2 -- Number of spaces to use for each step of (auto)indent vim.opt.expandtab = true -- Use spaces instead of actual tab characters