# HG changeset patch
# User Meredith Howard <mhoward@roomag.org>
# Date 1676827748 21600
# Node ID b70ed2db435490a06f3ee493d2a34621113a278d
# Parent  9dfc1a5a52dcfac89900f61a201e930f5215f913
More option fixes

diff --git a/.config/nvim/lua/config/options.lua b/.config/nvim/lua/config/options.lua
--- a/.config/nvim/lua/config/options.lua
+++ b/.config/nvim/lua/config/options.lua
@@ -11,13 +11,16 @@ o.shiftwidth = 2
 -- Display
 o.breakindent = true
 o.breakindentopt = "min:66,shift:2"
+o.conceallevel = 3
 o.diffopt:append("algorithm:patience")
 o.fillchars = "fold: ,vert:│"
 o.linebreak = true
 o.listchars = "tab:⇥·,trail:◼,nbsp:◻,extends:»,precedes:«"
+o.pumheight = 10
 o.showbreak = "» "
 o.termguicolors = true
 o.signcolumn = "number"
+o.winminwidth = 5
 
 -- set font etc
 if vim.fn.has("gui") then
@@ -46,6 +49,5 @@ o.wildignore = "*~,*.o,*.pyc,.git/*,hg/*
 
 if vim.fn.executable("ag") then
   o.grepprg = "ag --vimgrep"
-  -- o.grepformat:prepend({"%f:%l:%c:%m", "%f"})
-  -- o.errorformat:append("%f")
+  o.grepformat = {"%f:%l:%c:%m", "%f"}
 end