feat(nvim): limit completion menu height to 30

This commit is contained in:
Price Hiller 2023-05-01 00:38:12 -05:00
parent 9c7781799d
commit a57cbb11e6
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -129,6 +129,9 @@ M.setup = function()
-- Improved diff
opt.diffopt:append("linematch:75")
opt.fillchars:append("diff:")
-- Limit default menu height for completions
opt.pumheight = 30
end
return M