From c8ed72a611ce9415d47e33975496bcb1b754d88f Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Thu, 23 Dec 2021 00:56:45 +0000
Subject: [PATCH] feat(nvim): set some more options

---
 nvim/.config/nvim/lua/opdavies/vim.lua | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/nvim/.config/nvim/lua/opdavies/vim.lua b/nvim/.config/nvim/lua/opdavies/vim.lua
index 1c58f187..838d34db 100644
--- a/nvim/.config/nvim/lua/opdavies/vim.lua
+++ b/nvim/.config/nvim/lua/opdavies/vim.lua
@@ -66,6 +66,8 @@ local function set_vim_o()
   local settings = {
     autoindent = true,
     breakindent = true,
+    cmdheight = 2,
+    conceallevel = 0,
     expandtab = true,
     foldlevel = 1,
     foldlevelstart = 1,
@@ -75,11 +77,15 @@ local function set_vim_o()
     mouse = 'n',
     number = true,
     pumblend = 10,
+    pumheight = 10,
     relativenumber = true,
     scrolloff = 10,
     shiftwidth = 2,
+    showmode = false,
     smartindent = true,
     softtabstop = 2,
+    splitbelow = true,
+    splitright = true,
     swapfile = false,
     syntax = 'on',
     tabstop = 2,