From e45c88490e972ac98f277476c987f6e6780b282d Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
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.
---
 CHANGELOG.md                           | 6 ++++++
 config/neovim/lua/opdavies/options.lua | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d68ac1aa..17944789 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), but adapt
 
 Instead of grouping changes by tag, they are grouped by the date they are released.
 
+## 21st December 2023
+
+### Changed
+
+* Change `splitbelow` to `false` in Neovim.
+
 ## 19th December 2023
 
 ### Fixed
diff --git a/config/neovim/lua/opdavies/options.lua b/config/neovim/lua/opdavies/options.lua
index 3d18fcd0..5599f22d 100644
--- a/config/neovim/lua/opdavies/options.lua
+++ b/config/neovim/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",