We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81dd0b0 commit ff208eeCopy full SHA for ff208ee
.envrc
@@ -1 +1 @@
1
-use flake -Lv
+use flake . -Lv
flake.nix
@@ -136,18 +136,20 @@
136
};
137
138
139
- devShell = pkgs.mkShell {
+ devShell = pkgs.nvim-nightly-tests.overrideAttrs (oa: {
140
name = "rustaceanvim devShell";
141
inherit (pre-commit-check) shellHook;
142
- buildInputs = with pre-commit-hooks.packages.${system}; [
143
- alejandra
144
- lua-language-server
145
- stylua
146
- luacheck
147
- editorconfig-checker
148
- markdownlint-cli
149
- ];
150
- };
+ buildInputs = with pre-commit-hooks.packages.${system};
+ [
+ alejandra
+ lua-language-server
+ stylua
+ luacheck
+ editorconfig-checker
+ markdownlint-cli
+ ]
151
+ ++ oa.buildInputs;
152
+ });
153
154
docgen = pkgs.callPackage ./nix/docgen.nix {};
155
in {
0 commit comments