From 1f4ba88a17a489a8de7f8d77640d40114c6b233b Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Sun, 4 Jun 2023 14:04:08 +0100
Subject: [PATCH] feat(nvim): show matches in a split window

---
 config/neovim/lua/opdavies/options.lua | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/neovim/lua/opdavies/options.lua b/config/neovim/lua/opdavies/options.lua
index 3a707d3f..e96fa2e7 100644
--- a/config/neovim/lua/opdavies/options.lua
+++ b/config/neovim/lua/opdavies/options.lua
@@ -129,6 +129,7 @@ local function set_vim_o()
     foldmethod = "indent",
     formatoptions = "lm",
     hidden = false,
+    inccommand = "split",
     linebreak = true,
     mouse = "n",
     number = true,