2023-03-15 12:06:11 +01:00
|
|
|
{
|
|
|
|
# Empty configuration
|
|
|
|
empty = {
|
|
|
|
plugins.lspkind.enable = true;
|
|
|
|
};
|
|
|
|
|
2023-03-22 07:42:02 +01:00
|
|
|
example = {
|
|
|
|
plugins = {
|
|
|
|
lsp = {
|
|
|
|
enable = true;
|
|
|
|
servers.clangd.enable = true;
|
|
|
|
};
|
2024-02-03 23:22:06 +01:00
|
|
|
cmp.enable = true;
|
2023-03-22 07:42:02 +01:00
|
|
|
lspkind.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-03-15 12:06:11 +01:00
|
|
|
# All the upstream default options of lspkind
|
|
|
|
defaults = {
|
|
|
|
plugins.lspkind = {
|
|
|
|
enable = true;
|
|
|
|
mode = "symbol_text";
|
|
|
|
preset = "codicons";
|
|
|
|
symbolMap = null;
|
|
|
|
cmp = {
|
|
|
|
enable = true;
|
|
|
|
maxWidth = 50;
|
|
|
|
ellipsisChar = "...";
|
|
|
|
menu = null;
|
|
|
|
after = null;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|