diff --git a/nvim/.config/nvim/lua/opdavies/vim.lua b/nvim/.config/nvim/lua/opdavies/vim.lua index 1c58f18..838d34d 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,