refactor(cmp): reduce item counts for buffer & ripgrep completions
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 37s

This commit is contained in:
Price Hiller 2024-11-20 13:06:44 -06:00
parent baf22ac8c8
commit b18e27fa36
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -96,12 +96,12 @@ return {
}, },
{ {
name = "fuzzy_buffer", name = "fuzzy_buffer",
max_item_count = 5, max_item_count = 3,
}, },
{ {
name = "rg", name = "rg",
keyword_length = 3, keyword_length = 3,
max_item_count = 5, max_item_count = 3,
option = { option = {
"--smart-case", "--smart-case",
"--hidden", "--hidden",