about summary refs log tree commit diff stats
path: root/modules/by-name/nv/nvim/plgs/lspkind/default.nix
blob: 078d607d21ef502f9109d3e2fae309d3c0aa427b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  config,
  lib,
  ...
}: let
  cfg = config.soispha.programs.nvim;
in {
  home-manager.users.soispha.programs.nixvim.plugins.lspkind = lib.mkIf cfg.enable {
    enable = true;
    preset = "default"; # "codicons" is only for a font patched with vscode-codeicons.
  };
}