nix-community.nixvim/plugins/by-name/remote-nvim/default.nix
2024-12-22 10:04:00 +00:00

27 lines
574 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "remote-nvim";
packPathName = "remote-nvim.nvim";
package = "remote-nvim-nvim";
maintainers = [ lib.maintainers.khaneliman ];
settingsExample = {
offline_mode = {
enabled = true;
no_github = true;
};
remote = {
copy_dirs = {
data = {
base.__raw = ''vim.fn.stdpath ("data")'';
dirs = [ "lazy" ];
compression = {
enabled = true;
additional_opts = [ "--exclude-vcs" ];
};
};
};
};
};
}