From 049c7214438e318ef74b2312d99865d1a2266b5a Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Sun, 29 May 2022 11:31:19 -0400 Subject: [PATCH] Enabled line-wrapping. --- lua/user/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/user/options.lua b/lua/user/options.lua index 8a123b2..907ec9e 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -29,7 +29,7 @@ vim.opt.number = true -- set numbered lines vim.opt.relativenumber = true -- set relative numbered lines vim.opt.numberwidth = 4 -- set number column width to 2 {default 4} vim.opt.signcolumn = "yes" -- always show the sign column, otherwise it would shift the text each time -vim.opt.wrap = false -- display lines as one long line +vim.opt.wrap = true -- Wrap my code-lines on the visible screen. vim.opt.scrolloff = 8 -- is one of my fav vim.opt.sidescrolloff = 8 vim.opt.guifont = "monospace:h17" -- the font used in graphical neovim applications