mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
24 lines
422 B
Nix
24 lines
422 B
Nix
|
{
|
||
|
# Empty configuration
|
||
|
empty = {
|
||
|
plugins.lspkind.enable = true;
|
||
|
};
|
||
|
|
||
|
# 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|