nixos/home/common/core/nixvim/plugins/lspkind.nix

14 lines
241 B
Nix
Raw Permalink Normal View History

2024-06-03 11:05:46 +01:00
{
# Add tiny pictograms to lsp
programs.nixvim.plugins.lspkind = {
enable = true;
symbolMap = {
Copilot = "";
};
extraOptions = {
maxwidth = 50;
ellipsis_char = "...";
};
};
}