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

live-share

URL: https://github.com/azratul/live-share.nvim/

Maintainers: Austin Horstman


Collaborative live coding in Neovim.

plugins.live-share.enable

Whether to enable live-share.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.live-share.package

The live-share package to use.

Type: package

Default:

pkgs.vimPlugins.live-share-nvim

Declared by:

plugins.live-share.autoLoad

Whether to automatically load live-share when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.live-share.callSetup

Whether to generate the standard require('live-share').setup(...) call for this plugin.

By default, this follows the plugin’s built-in behavior. Set this to false to disable the generated setup call, or to true to force it even when the plugin would only call it conditionally.

Type: null or boolean

Default:

null

Declared by:

plugins.live-share.settings

Options provided to the require('live-share').setup function.

Type: lua value

Default:

{ }

Example:

{
  port = 443;
  stun = "stun.cloudflare.com:3478";
  transport = "punch";
  username = "pairing-session";
  workspace_root = "/srv/shared-project";
}

Declared by: