plugins/remote-nvim: init

This commit is contained in:
Austin Horstman 2024-12-11 19:00:23 -06:00
parent c7b109f5af
commit 54b1d91299
No known key found for this signature in database
2 changed files with 156 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, ... }:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "remote-nvim";
originalName = "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" ];
};
};
};
};
};
}