Compare commits

..

1 commit

Author SHA1 Message Date
github-actions[bot]
2b7a5d0b0d flake.lock: Update
Flake lock file updates:

• Updated input 'r-nvim-nix':
    'github:dwinkler1/r_nvim_nix/435103d' (2026-05-13)
  → 'github:dwinkler1/r_nvim_nix/c7b880d' (2026-05-13)
2026-05-13 06:29:50 +00:00
2 changed files with 13 additions and 7 deletions

12
flake.lock generated
View file

@ -79,11 +79,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1778684156, "lastModified": 1778643549,
"narHash": "sha256-Z4y1tQfkIsPK4NRxGn668HMDfWxnxNxSJ0CAOOXiIfY=", "narHash": "sha256-dJBdYawL+/IVtmXLFZ+kQGOo5fd1cliDJJdJEi0Mqqw=",
"owner": "dwinkler1", "owner": "dwinkler1",
"repo": "r_nvim_nix", "repo": "r_nvim_nix",
"rev": "2f49dfee27886068e2f49cbd54558ce4cc424c82", "rev": "c7b880dde56b4fcef09938e311415b63f2262498",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -126,11 +126,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1778662548, "lastModified": 1778560014,
"narHash": "sha256-e6XKnrzKr48r1UdCr+5bekibSqe2L1/Sgi46IODHtGQ=", "narHash": "sha256-Hu9RMo7vJt/4dx/vAvyG+cE9RBwpaH1ouyunvruYaDI=",
"owner": "BirdeeHub", "owner": "BirdeeHub",
"repo": "nix-wrapper-modules", "repo": "nix-wrapper-modules",
"rev": "46e7c1e3f0e149b28f539eb8601152db8a67ad0c", "rev": "e30aa99c9c7038e16efae3cad7916a47307a9e36",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -11,7 +11,13 @@
config.specs.r = { config.specs.r = {
data = with pkgs.vimPlugins; [ data = with pkgs.vimPlugins; [
pkgs.r-nvim (config.nvim-lib.neovimPlugins.r.overrideAttrs (old: {
postInstall = (old.postInstall or "") + ''
mkdir -p $out/rnvimserver
cp ${pkgs.rnvimserver}/bin/rnvimserver $out/rnvimserver/rnvimserver
chmod +x $out/rnvimserver/rnvimserver
'';
}))
quarto-nvim quarto-nvim
{ {
data = otter-nvim; data = otter-nvim;