From f31dd3327f5efa9bfe51398e8789a03aa2f11505 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Sat, 29 Jan 2022 00:48:55 +0000
Subject: [PATCH] chore(nvim): don't wrap by default

---
 roles/neovim/files/lua/opdavies/options.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/neovim/files/lua/opdavies/options.lua b/roles/neovim/files/lua/opdavies/options.lua
index 631ccc41..c711c3f6 100644
--- a/roles/neovim/files/lua/opdavies/options.lua
+++ b/roles/neovim/files/lua/opdavies/options.lua
@@ -93,7 +93,7 @@ local function set_vim_o()
     termguicolors = true,
     textwidth = 0,
     updatetime = 1000,
-    wrap = true,
+    wrap = false,
   }
 
   for key, value in pairs(settings) do