remote-nvim

URL: https://github.com/amitds1997/remote-nvim.nvim/

Maintainers: Austin Horstman

plugins.remote-nvim.enable

Whether to enable remote-nvim.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.remote-nvim.package

The remote-nvim.nvim package to use.

Type: package

Default: pkgs.vimPlugins.remote-nvim-nvim

Declared by:

plugins.remote-nvim.settings

Options provided to the require('remote-nvim').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  offline_mode = {
    enabled = true;
    no_github = true;
  };
  remote = {
    copy_dirs = {
      data = {
        base = {
          __raw = "vim.fn.stdpath (\"data\")";
        };
        compression = {
          additional_opts = [
            "--exclude-vcs"
          ];
          enabled = true;
        };
        dirs = [
          "lazy"
        ];
      };
    };
  };
}

Declared by: