mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-05-21 06:16:33 +00:00
10 lines
271 B
Nix
10 lines
271 B
Nix
{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" {};
|
|
};
|
|
}
|