From 14ca59bb3ba22923a4d6ea47e06b2fc694a9dd4c Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 30 Jun 2022 11:34:26 -0500 Subject: [PATCH] feat(nvim): disable wrap --- .config/nvim/lua/core/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/nvim/lua/core/options.lua b/.config/nvim/lua/core/options.lua index 2f2223e0..0c5d59ee 100755 --- a/.config/nvim/lua/core/options.lua +++ b/.config/nvim/lua/core/options.lua @@ -106,6 +106,9 @@ M.setup = function() -- Set command bar height to hide when not in use opt.cmdheight = 0 + + -- Disable wrap + opt.wrap = false end return M