From 40e12613f3485eaf8c58827c3891e14ec785bd26 Mon Sep 17 00:00:00 2001 From: Steven Proctor Date: Sun, 9 Oct 2022 21:16:28 -0500 Subject: [PATCH] NeoVim limit emoji completion suggestion count --- nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl b/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl index 982525d..ec99082 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl @@ -18,7 +18,7 @@ {:name :conjure} {:name :buffer} {:name :orgmode} - {:name :emoji}]) + {:name :emoji :max_item_count 8}]) ;; Setup cmp with desired settings (let [cmp (require :cmp)]