nixvim/config/plugins/cmp/lspkind.nix
Roel de Cort 397937b59d fix icon
2024-05-16 00:49:53 +02:00

12 lines
177 B
Nix

{
plugins.lspkind = {
enable = true;
symbolMap = {
Copilot = " ";
};
extraOptions = {
maxwidth = 50;
ellipsis_char = "...";
};
};
}