nix-community.nixvim/plugins/by-name/remote-nvim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
574 B
Nix
Raw Normal View History

2024-12-11 19:00:23 -06:00
{ lib, ... }:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkNeovimPlugin {
2024-12-11 19:00:23 -06:00
name = "remote-nvim";
packPathName = "remote-nvim.nvim";
2024-12-11 19:00:23 -06:00
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" ];
};
};
};
};
};
}