mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-24 19:25:31 +02:00
34 lines
536 B
Nix
34 lines
536 B
Nix
{
|
|
empty = {
|
|
plugins.lspkind = {
|
|
enable = true;
|
|
cmp.enable = false;
|
|
};
|
|
};
|
|
|
|
example = {
|
|
plugins = {
|
|
lsp = {
|
|
enable = true;
|
|
servers.clangd.enable = true;
|
|
};
|
|
cmp.enable = true;
|
|
lspkind.enable = true;
|
|
};
|
|
};
|
|
|
|
defaults = {
|
|
plugins.lspkind = {
|
|
enable = true;
|
|
settings = {
|
|
mode = "symbol_text";
|
|
preset = "codicons";
|
|
symbol_map = null;
|
|
};
|
|
cmp = {
|
|
enable = false;
|
|
after = null;
|
|
};
|
|
};
|
|
};
|
|
}
|