docs: add trouble shooting for nix

This commit is contained in:
Barna Máté 2025-01-29 18:39:11 +01:00
parent 2db251e8ef
commit 9b24b089b4

View file

@ -72,6 +72,25 @@ This table represents how much will the theme look alike to it's original one. L
| Ruby | TODO |
| Swift | TODO |
## Troubleshooting
In some cases you might encouner an error like:
```
> ======================================================
> No successful require checks.
>
> Require check failed for the following modules:
> - shades_of_purple.shades_of_purple
> ======================================================
```
This can be solved by not checking this package
```nix
pkgs.vimUtils.buildVimPlugin {
...
doCheck = false;
...
};
```
## Made possible with
- [lush.nvim](https://github.com/rktjmp/lush.nvim/) and it's [starter template](https://github.com/rktjmp/lush-template).