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.
This commit is contained in:
Oliver Davies 2023-12-21 08:26:21 +00:00
parent d97259fc6a
commit e45c88490e
2 changed files with 7 additions and 1 deletions

View file

@ -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. 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 ## 19th December 2023
### Fixed ### Fixed

View file

@ -174,7 +174,7 @@ local function set_vim_o()
signcolumn = "yes:1", signcolumn = "yes:1",
smartindent = true, smartindent = true,
softtabstop = 2, softtabstop = 2,
splitbelow = true, splitbelow = false,
splitright = true, splitright = true,
swapfile = false, swapfile = false,
syntax = "on", syntax = "on",