From 1f41c4481ca12e6c97bf57541b209217ce4dad83 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Wed, 21 Jan 2026 08:27:04 +0100 Subject: [PATCH] [CMP] Fix missing menu icons --- nvim/lua/plugins/lsp/cmp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/plugins/lsp/cmp.lua b/nvim/lua/plugins/lsp/cmp.lua index bbff4ca..32693ac 100755 --- a/nvim/lua/plugins/lsp/cmp.lua +++ b/nvim/lua/plugins/lsp/cmp.lua @@ -94,7 +94,7 @@ return { }), formatting = { - fields = { "kind", "abbr", "menu" }, + fields = { "icon", "abbr", "menu" }, format = lspkind.cmp_format({ mode = "symbol", -- show only symbol annotations maxwidth = 50, -- prevent the popup from showing more than provided characters (e.g 50 will not show more than 50 characters)