More option fixes

Sun, 19 Feb 2023 11:29:08 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 19 Feb 2023 11:29:08 -0600
changeset 1026
b70ed2db4354
parent 1025
9dfc1a5a52dc
child 1027
823290a8e710

More option fixes

.config/nvim/lua/config/options.lua file | annotate | diff | comparison | revisions
--- 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

mercurial