From 6d7c3de4110f7629666433c93dc1acfcfa3fd039 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Tue, 2 Jan 2024 14:51:03 +0100 Subject: [PATCH] fix(init.lua): enable line wrapping by setting vim.opt.wrap to true fix(init.lua): remove color column limit by setting vim.opt.colorcolumn to an empty string --- lua/absolute/core/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/absolute/core/init.lua b/lua/absolute/core/init.lua index a483467..b3a10e8 100644 --- a/lua/absolute/core/init.lua +++ b/lua/absolute/core/init.lua @@ -10,7 +10,7 @@ vim.opt.expandtab = true vim.opt.smartindent = true -vim.opt.wrap = false +vim.opt.wrap = true vim.opt.swapfile = false vim.opt.backup = false @@ -28,6 +28,6 @@ vim.opt.isfname:append("@-@") vim.opt.updatetime = 50 -vim.opt.colorcolumn = "100" +vim.opt.colorcolumn = "" vim.g.mapleader = " "