From 84f2fbe946536b532ec1b6d42666b3a02af9b80f Mon Sep 17 00:00:00 2001 From: Micah Effiong Date: Tue, 6 Jun 2023 12:53:14 +0100 Subject: [PATCH] added settings for scrolloff and column-color --- lua/custom/options/init.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/custom/options/init.lua b/lua/custom/options/init.lua index 3b985c2c..a28c618d 100644 --- a/lua/custom/options/init.lua +++ b/lua/custom/options/init.lua @@ -12,3 +12,8 @@ vim.opt.tabstop = 2 vim.opt.shiftwidth = 2 vim.opt.expandtab = true +vim.opt.colorcolumn = '80' + +-- always have a set number of lines +-- below the screen except at the end of the screen +vim.opt.scrolloff = 8