mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
32 lines
531 B
Nix
32 lines
531 B
Nix
{
|
|
empty = {
|
|
plugins.lspkind.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins = {
|
|
lsp = {
|
|
enable = true;
|
|
servers.clangd.enable = true;
|
|
};
|
|
cmp.enable = true;
|
|
lspkind.enable = true;
|
|
};
|
|
};
|
|
|
|
defaults = {
|
|
plugins.lspkind = {
|
|
enable = true;
|
|
mode = "symbol_text";
|
|
preset = "codicons";
|
|
symbolMap = null;
|
|
cmp = {
|
|
enable = true;
|
|
maxWidth = 50;
|
|
ellipsisChar = "...";
|
|
menu = null;
|
|
after = null;
|
|
};
|
|
};
|
|
};
|
|
}
|