summaryrefslogtreecommitdiffstats
path: root/modules/plugins/rich-presence/cord-nvim/cord-nvim.nix
blob: a89e183776da23dd87e6ad606f45951e1afc2421 (plain)
1
2
3
4
5
6
7
8
9
10
{lib, ...}: let
  inherit (lib.options) mkEnableOption;
  inherit (lib.nvim.types) mkPluginSetupOption;
in {
  options.vim.presence.cord-nvim = {
    enable = mkEnableOption "Discord rich presence [cord.nvim]";

    setupOpts = mkPluginSetupOption "cord.nvim" {};
  };
}