Skip to content

Commit

Permalink
fix: buildVimPlugin (#933)
Browse files Browse the repository at this point in the history
* flake.lock: Update

Flake lock file updates:

• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/4989a246d7a390a859852baddb1013f825435cee?narHash=sha256-kMBQ5PRiFLagltK0sH%2B08aiNt3zGERC2297iB6vrvlU%3D' (2024-12-17)
  → 'github:nixos/nixpkgs/b30f97d8c32d804d2d832ee837d0f1ca0695faa5?narHash=sha256-U47xeACNBpkSO6IcCm0XvahsVXpJXzjPIQG7TZlOToU%3D' (2025-01-06)

* fix(nix): ignore docs folder and repro.lua
  • Loading branch information
konradmalik authored Jan 7, 2025
1 parent 47efef8 commit 3f5dcbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@
./rust-toolchain.toml
];
# nvim source files
# all that are not nix, nor rust
nvimFs = fs.difference ./. (fs.union nixFs rustFs);
# all that are not nix, nor rust, nor other ignored files
nvimFs =
fs.difference ./. (fs.unions [ nixFs rustFs ./docs ./repro.lua ]);
version = "0.9.3";
in {
blink-fuzzy-lib = let
Expand Down

0 comments on commit 3f5dcbc

Please sign in to comment.