Compare commits

..

3 commits

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

• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/4bd9165' (2026-04-14)
  → 'github:nixos/nixpkgs/1c3fe55' (2026-04-27)
• Updated input 'plugins-r':
    'github:R-nvim/R.nvim/b9cfffe' (2026-04-16)
  → 'github:R-nvim/R.nvim/989437b' (2026-04-27)
• Updated input 'wrappers':
    'github:BirdeeHub/nix-wrapper-modules/f11469c' (2026-04-16)
  → 'github:BirdeeHub/nix-wrapper-modules/d3e027a' (2026-04-29)
2026-04-30 06:08:58 +00:00
603a02b627
Merge pull request #7 from dwinkler1/copilot/fix-quarto-functionality-with-r
fix: load quarto-nvim and otter-nvim when only R spec is active
2026-04-29 17:40:57 +10:00
copilot-swe-agent[bot]
eb06ab9655
fix: add quarto-nvim and otter-nvim to r spec plugins
Agent-Logs-Url: https://github.com/dwinkler1/nvimConfig/sessions/817f9c4f-efa7-4e6c-8f0f-c62bde6a606b

Co-authored-by: dwinkler1 <22460147+dwinkler1@users.noreply.github.com>
2026-04-29 06:49:04 +00:00
2 changed files with 9 additions and 4 deletions

6
flake.lock generated
View file

@ -101,11 +101,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1777442265, "lastModified": 1777489553,
"narHash": "sha256-jbNG2oI9ZimEDGJ0lrFSQHUANSAbRYXOsprD3DAhZGY=", "narHash": "sha256-zR4vCp+LXrfTOCrjEHrxhD8FAs8KdWqOUomJgF+ds08=",
"owner": "BirdeeHub", "owner": "BirdeeHub",
"repo": "nix-wrapper-modules", "repo": "nix-wrapper-modules",
"rev": "099514fc679f0b1a6147157b490da19cd51cf160", "rev": "d3e027abcbf37f6185b1e131836490ef8764ec68",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -10,8 +10,13 @@
}; };
config.specs.r = { config.specs.r = {
data = [ data = with pkgs.vimPlugins; [
config.nvim-lib.neovimPlugins.r config.nvim-lib.neovimPlugins.r
quarto-nvim
{
data = otter-nvim;
pname = "otter";
}
]; ];
}; };