From 1ed23cead347b9bfba5cb158e41fc61ac7bbf83b Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 15 Aug 2023 23:05:55 -0500 Subject: [PATCH] fix(nvim): correctly enable cmp ghost text --- dots/.config/nvim/lua/plugins/configs/cmp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/nvim/lua/plugins/configs/cmp.lua b/dots/.config/nvim/lua/plugins/configs/cmp.lua index 7b05e520..927863db 100644 --- a/dots/.config/nvim/lua/plugins/configs/cmp.lua +++ b/dots/.config/nvim/lua/plugins/configs/cmp.lua @@ -147,7 +147,7 @@ return { side_padding = 0, }, }, - experimental = { ghost_text = "Comment", native_menu = false }, + experimental = { ghost_text = { hl_group = "Comment" }, native_menu = false }, snippet = { -- REQUIRED - you must specify a snippet engine expand = function(args)