From c3f6b790a9367479bc0e2f66e2188f955399ae6c Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sun, 4 Feb 2024 12:25:40 +0000 Subject: [PATCH] nvim: increase LSP suggstion width --- nvim/lua/thomas/plugins/nvim-cmp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/thomas/plugins/nvim-cmp.lua b/nvim/lua/thomas/plugins/nvim-cmp.lua index 855f97a..1b93e52 100644 --- a/nvim/lua/thomas/plugins/nvim-cmp.lua +++ b/nvim/lua/thomas/plugins/nvim-cmp.lua @@ -48,7 +48,7 @@ cmp.setup({ -- configure lspkind for vs-code like icons formatting = { format = lspkind.cmp_format({ - maxwidth = 150, + maxwidth = 200, ellipsis_char = "...", symbol_map = { Copilot = "" }, }),