mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-20 02:35:52 +02:00
plugins/remote-nvim: init
This commit is contained in:
parent
c7b109f5af
commit
54b1d91299
2 changed files with 156 additions and 0 deletions
27
plugins/by-name/remote-nvim/default.nix
Normal file
27
plugins/by-name/remote-nvim/default.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue