Compare commits

..

4 commits

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

• Updated input 'wrappers':
    'github:BirdeeHub/nix-wrapper-modules/597b35c' (2026-05-18)
  → 'github:BirdeeHub/nix-wrapper-modules/7fe1af6' (2026-05-19)
2026-05-19 06:52:18 +00:00
ad9473a916 different ls 2026-05-19 13:28:40 +10:00
bfd4ba417d remove languageserver package from config 2026-05-19 13:18:29 +10:00
4d28d0d490 fix for codecompanion 2026-05-19 13:15:29 +10:00
4 changed files with 12 additions and 11 deletions

6
flake.lock generated
View file

@ -126,11 +126,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1779078555, "lastModified": 1779172953,
"narHash": "sha256-p18v4DHcVqAUwstamlftM+oMsC2Ca2eWX5rlg8o6W+Q=", "narHash": "sha256-+GFVS5x/04IQVAsvTcv0Hv5LJPtNJz23ZdE96SgSK1Q=",
"owner": "BirdeeHub", "owner": "BirdeeHub",
"repo": "nix-wrapper-modules", "repo": "nix-wrapper-modules",
"rev": "a4d6ea205928bad051089079edba7a1e35a80a2a", "rev": "7fe1af63a393a5ca5f6964a9627eec2c0acdde2e",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -105,7 +105,7 @@
forAllSystems = nixpkgs.lib.genAttrs systems; forAllSystems = nixpkgs.lib.genAttrs systems;
extra_pkg_config = { extra_pkg_config = {
# allowUnfree = true; allowUnfree = true;
}; };
overlayDefs = import ./overlays inputs; overlayDefs = import ./overlays inputs;

View file

@ -3,10 +3,9 @@
pkgs, pkgs,
lib, lib,
... ...
}: }: {
{
config.specs.gitPlugins = { config.specs.gitPlugins = {
data = [ ]; data = [];
}; };
config.specs.r = { config.specs.r = {
@ -112,7 +111,9 @@
nvim-treesitter-context nvim-treesitter-context
nvim-treesitter-textobjects nvim-treesitter-textobjects
{ {
data = pkgs.codecompanion-nvim; data = pkgs.codecompanion-nvim.overrideAttrs (old: {
doCheck = false;
});
pname = "codecompanion"; pname = "codecompanion";
} }
]; ];
@ -176,6 +177,6 @@
config.specs.gitPlugins-lazy = { config.specs.gitPlugins-lazy = {
lazy = true; lazy = true;
data = [ ]; data = [];
}; };
} }

View file

@ -15,10 +15,10 @@ now_if_args(function()
marksman = { marksman = {
filetypes = { "markdown", "markdown_inline", "codecompanion" }, filetypes = { "markdown", "markdown_inline", "codecompanion" },
}, },
r_language_server = { r_ls = {
filetypes = { 'r', 'rmd', 'rmarkdown' }, filetypes = { 'r', 'rmd', 'rmarkdown' },
settings = { settings = {
['r_language_server'] = { ['r_ls'] = {
lsp = { lsp = {
rich_documentation = true, rich_documentation = true,
enable = true, enable = true,