nixvim-for-share/config/plugins/lsp/lspkind.nix
2025-07-26 12:43:01 +00:00

19 lines
267 B
Nix

{
lib,
config,
helpers,
...
}:
let
inherit (helpers) mkRaw;
in
{
# TJ
# https://www.youtube.com/watch?v=_DnmphIwnjo
plugins = {
# Make cmp have icons and colors
lspkind = {
enable = lib.mkIf config.plugins.cmp.enable true;
};
};
}