Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

presence

URL: https://github.com/andweeb/presence.nvim/

Maintainers: Austin Horstman


Discord Rich Presence for Neovim.

plugins.presence.enable

Whether to enable presence.

Type: boolean

Default: false

Example: true

Declared by:

plugins.presence.package

The presence package to use.

Type: package

Default: pkgs.vimPlugins.presence-nvim

Declared by:

plugins.presence.autoLoad

Whether to automatically load presence when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.presence.settings

Options provided to the require('presence').setup function.

Type: open submodule of attribute set of anything

Default: { }

Example:

{
  auto_update = false;
  blacklist = [
    "NvimTree"
    "alpha"
  ];
  buttons = [
    {
      label = "GitHub";
      url = "https://github.com/username";
    }
  ];
  editing_text = "Crafting %s";
  enable_line_number = true;
  main_image = "file";
  neovim_image_text = "The Superior Text Editor";
  workspace_text = "Working on %s";
}

Declared by: