From 4df9591649174a5faa9be465fe74a9c0a1e0e8a1 Mon Sep 17 00:00:00 2001 From: Micah Effiong Date: Tue, 6 Jun 2023 12:55:16 +0100 Subject: [PATCH] added setting for split direction --- lua/custom/options/init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/custom/options/init.lua b/lua/custom/options/init.lua index a28c618d..8a7266e6 100644 --- a/lua/custom/options/init.lua +++ b/lua/custom/options/init.lua @@ -17,3 +17,6 @@ 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 + +vim.opt.splitright = true +vim.opt.splitbelow = true