mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
27 lines
431 B
Nix
27 lines
431 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;
|
|
settings = {
|
|
mode = "symbol_text";
|
|
preset = "codicons";
|
|
symbol_map.__raw = "nil";
|
|
};
|
|
};
|
|
};
|
|
}
|