remote-nvim
URL: https://github.com/amitds1997/remote-nvim.nvim/
Maintainers: Austin Horstman
Adds support for remote development and devcontainers to Neovim.
plugins.remote-nvim.enable
Whether to enable remote-nvim.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.remote-nvim.package
The remote-nvim package to use.
Type: package
Default:
pkgs.vimPlugins.remote-nvim-nvim
Declared by:
plugins.remote-nvim.autoLoad
Whether to automatically load remote-nvim when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.remote-nvim.callSetup
Whether to generate the standard require('remote-nvim').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.remote-nvim.settings
Options provided to the require('remote-nvim').setup function.
Type: lua value
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: