diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a3f4fce3..a349cb07 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -37,7 +37,7 @@ jobs: uses: DeterminateSystems/nix-installer-action@main - name: Check formatting via Alejandra - run: nix run nixpkgs#alejandra -- --check . --exclude npins + run: nix run nixpkgs#alejandra -- -c . check-typos: name: "Check source tree for typos" diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index c28a115e..c6599852 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -329,12 +329,6 @@ - Fix namespace of python-lsp-server by changing it to python3Packages - [dmitriiStepanidenko](https://github.com/dmitriiStepanidenko): - Add graphql LSP and formatter suport via prettier. - -[Noah765](https://github.com/Noah765): - -- Add missing `flutter-tools.nvim` dependency `plenary.nvim`. - diff --git a/flake.lock b/flake.lock index 540715e9..e31038ab 100644 --- a/flake.lock +++ b/flake.lock @@ -38,11 +38,11 @@ }, "mnw": { "locked": { - "lastModified": 1744592022, - "narHash": "sha256-QuWrCRiF3CUM99sgj3gXbIzB1IAVWS5IEfFHadbMA2g=", + "lastModified": 1744497692, + "narHash": "sha256-ikWRNR/P/aKCCySZnUfF1W0u0t6rSoJgQgKeDdCBAK8=", "owner": "Gerg-L", "repo": "mnw", - "rev": "cf9e19413b6c2d995b55565cd99facf9c751b653", + "rev": "c5322a2bf74c0066fd15ca35721561397a2e7eab", "type": "github" }, "original": { diff --git a/modules/plugins/git/gitlinker-nvim/config.nix b/modules/plugins/git/gitlinker-nvim/config.nix index 749cf18c..d1104a28 100644 --- a/modules/plugins/git/gitlinker-nvim/config.nix +++ b/modules/plugins/git/gitlinker-nvim/config.nix @@ -9,6 +9,7 @@ in { config = mkIf cfg.enable { vim = { + startPlugins = ["gitlinker-nvim"]; lazy.plugins = { "gitlinker-nvim" = { package = "gitlinker-nvim"; diff --git a/modules/plugins/languages/dart.nix b/modules/plugins/languages/dart.nix index 77d92d3b..4f8a7028 100644 --- a/modules/plugins/languages/dart.nix +++ b/modules/plugins/languages/dart.nix @@ -134,14 +134,10 @@ in { }) (mkIf ftcfg.enable { - vim.startPlugins = [ - ( - if ftcfg.enableNoResolvePatch - then "flutter-tools-patched" - else "flutter-tools-nvim" - ) - "plenary-nvim" - ]; + vim.startPlugins = + if ftcfg.enableNoResolvePatch + then ["flutter-tools-patched"] + else ["flutter-tools-nvim"]; vim.pluginRC.flutter-tools = entryAnywhere '' require('flutter-tools').setup { diff --git a/npins/sources.nix b/npins/sources.nix index 3ae0b99e..162f1d94 100644 --- a/npins/sources.nix +++ b/npins/sources.nix @@ -98,9 +98,7 @@ builtins.mapAttrs Channel = getZip; Tarball = getUrl; } - .${ - spec.type - } + .${spec.type} or (builtins.throw "Unknown source type ${spec.type}"); in spec // {outPath = mayOverride (func spec);}