1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/lspkind/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

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";
};
};
};
}