From 8a9d6d9141c2d033528918a2ce0649662b94fb74 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 21 Dec 2023 08:26:21 +0000 Subject: [PATCH] Change `splitbelow` to `false` This means that new splits, such as Fugitive, will open above the current pane rather than below it. If I don't like it, I'll revert it. --- lua/opdavies/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/opdavies/options.lua b/lua/opdavies/options.lua index 3d18fcd..5599f22 100644 --- a/lua/opdavies/options.lua +++ b/lua/opdavies/options.lua @@ -174,7 +174,7 @@ local function set_vim_o() signcolumn = "yes:1", smartindent = true, softtabstop = 2, - splitbelow = true, + splitbelow = false, splitright = true, swapfile = false, syntax = "on",