nixvim/config/lsp/lspkind.nix

13 lines
176 B
Nix
Raw Normal View History

2024-08-21 15:03:46 +00:00
{
plugins.lspkind = {
enable = true;
symbolMap = {
Copilot = "";
};
extraOptions = {
maxwidth = 50;
ellipsis_char = "...";
};
};
}